forked from bartvdbraak/blender
bcee2343ea
For cmake users, you should now use "make install" instead of "make". This was already changed for Linux and Windows. Same for Xcode, use the install target. Changes: * CMake install mechanism, resulting bundle was verified to be indentical here. * For cmake, include Info.plist in bundle using builtin mechanism for that. There was some code in packaging.cmake, but it wasn't correct as these properties need to be set on the executable. * For scons, fix app bundle version, was still using removed release/VERSION. * Remove unused blendercreator.app and blenderpublisher.app. * Fix Info.plist being set as a binary file in svn, should be plain text.
54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
|
|
<plist version="0.9">
|
|
<dict>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
|
|
<key>CFBundleExecutable</key>
|
|
<string>blender</string>
|
|
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
|
|
<key>CFBundleIconFile</key>
|
|
<string>blender icon.icns</string>
|
|
|
|
<key>CFBundleName</key>
|
|
<string>Blender</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>org.blenderfoundation.blender</string>
|
|
|
|
<key>CFBundleVersion</key>
|
|
<string>${MACOSX_BUNDLE_LONG_VERSION_STRING}, Blender Foundation</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>${MACOSX_BUNDLE_SHORT_VERSION_STRING}</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>${MACOSX_BUNDLE_LONG_VERSION_STRING}, Blender Foundation</string>
|
|
|
|
<key>CFBundleDocumentTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeIconFile</key>
|
|
<string>blender file icon.icns</string>
|
|
<key>CFBundleTypeName</key>
|
|
<string>Blender File</string>
|
|
<key>CFBundleTypeOSTypes</key>
|
|
<array>
|
|
<string>BLND</string>
|
|
</array>
|
|
<key>CFBundleTypeExtensions</key>
|
|
<array>
|
|
<string>blend</string>
|
|
</array>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Editor</string>
|
|
<key>LSIsAppleDefaultForType</key>
|
|
<true/>
|
|
</dict>
|
|
</array>
|
|
</dict>
|
|
</plist>
|