Mercurial > hg > tony
view deploy/osx/Info.plist @ 516:449a0355f864 v2.0_osx_deploy
Deployment fixes. Qt on OSX now seems to depend on QtDBus, so copy that in, and also fail if anything is found to depend on an absent Qt framework.
author | Chris Cannam |
---|---|
date | Fri, 23 Oct 2015 08:50:39 +0100 |
parents | ab624c319eb7 |
children | 1dddd90cb84e |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd"> <plist version="0.9"> <dict> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleName</key> <string>Tony</string> <key>CFBundleExecutable</key> <string>Tony</string> <key>CFBundleIconFile</key> <string>tony.icns</string> <key>CFBundleIdentifier</key> <string>uk.ac.qmul.eecs.c4dm.Tony</string> <key>CFBundleShortVersionString</key> <string>TONY_VERSION</string> <!-- enable HiDPI --> <key>NSPrincipalClass</key> <string>NSApplication</string> <key>NSHighResolutionCapable</key> <string>True</string> <key>CFBundleDocumentTypes</key> <array> <!-- we are a 'viewer' of general audio files --> <dict> <key>CFBundleTypeExtensions</key> <array> <string>mp3</string> </array> <key>CFBundleTypeMIMETypes</key> <array> <string>audio/mpeg</string> </array> <key>CFBundleTypeName</key> <string>MP3 Audio</string> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>LSIsAppleDefaultForType</key> <false/> <key>LSHandlerRank</key> <string>Alternate</string> </dict> <dict> <key>CFBundleTypeExtensions</key> <array> <string>ogg</string> <string>oga</string> </array> <key>CFBundleTypeMIMETypes</key> <array> <string>audio/ogg</string> </array> <key>CFBundleTypeName</key> <string>Ogg Vorbis Audio</string> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>LSIsAppleDefaultForType</key> <false/> <key>LSHandlerRank</key> <string>Alternate</string> </dict> <dict> <key>CFBundleTypeExtensions</key> <array> <string>wav</string> </array> <key>CFBundleTypeMIMETypes</key> <array> <string>audio/x-wav</string> </array> <key>CFBundleTypeName</key> <string>Wave Audio</string> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>LSIsAppleDefaultForType</key> <false/> <key>LSHandlerRank</key> <string>Alternate</string> </dict> <dict> <key>CFBundleTypeExtensions</key> <array> <string>aif</string> <string>aiff</string> </array> <key>CFBundleTypeMIMETypes</key> <array> <string>audio/x-aiff</string> </array> <key>CFBundleTypeName</key> <string>AIFF Audio</string> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>LSIsAppleDefaultForType</key> <false/> <key>LSHandlerRank</key> <string>Alternate</string> </dict> <dict> <key>CFBundleTypeExtensions</key> <array> <string>flac</string> </array> <key>CFBundleTypeMIMETypes</key> <array> <string>audio/flac</string> </array> <key>CFBundleTypeName</key> <string>FLAC Audio</string> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>LSIsAppleDefaultForType</key> <false/> <key>LSHandlerRank</key> <string>Alternate</string> </dict> </array> </dict> </plist>