Deploy clementine-tagreader on mac.

This commit is contained in:
John Maguire 2012-01-09 11:24:34 +00:00
parent 8d19432aa3
commit aa20c2b226
2 changed files with 4 additions and 2 deletions

5
dist/macdeploy.py vendored
View File

@ -369,8 +369,9 @@ FixPlugin(FindGstreamerPlugin('gst-plugin-scanner'), '.')
try: try:
FixPlugin('clementine-spotifyblob', '.') FixPlugin('clementine-spotifyblob', '.')
except: FixPlugin('clementine-tagreader', '.')
print 'Failed to find spotify blob' except Exception, e:
print 'Failed to find spotify blob: %s' % e
for plugin in QT_PLUGINS: for plugin in QT_PLUGINS:
FixPlugin(FindQtPlugin(plugin), os.path.dirname(plugin)) FixPlugin(FindQtPlugin(plugin), os.path.dirname(plugin))

View File

@ -1127,6 +1127,7 @@ target_link_libraries(clementine
if(HAVE_SPOTIFY_BLOB) if(HAVE_SPOTIFY_BLOB)
add_dependencies(clementine clementine-spotifyblob) add_dependencies(clementine clementine-spotifyblob)
endif(HAVE_SPOTIFY_BLOB) endif(HAVE_SPOTIFY_BLOB)
add_dependencies(clementine clementine-tagreader)
set_target_properties(clementine PROPERTIES set_target_properties(clementine PROPERTIES
MACOSX_BUNDLE_INFO_PLIST "../dist/Info.plist" MACOSX_BUNDLE_INFO_PLIST "../dist/Info.plist"