mirror of
https://github.com/glest/glest-source.git
synced 2025-02-24 19:52:25 +01:00
MegaGlest is the correct spelling, the process of building a package upper cases the binary so I'm removing my modification via an earlier branch. This also sets CUSTOM_DATA_INSTALL_PATH to /Applications - this is the final step in getting MegaGlest.app to launch after building and installing. The previously hard coded path was ok for gnumake but failed when Xcode got involved as it has build types (release/debug/et al) which the hard coding didn't support. I've added an if/else catch for the two build types that i've seen while working on megaglest and it should be trivial to add any others that may be desirable. There is still an outstanding issue of embedding dependencies or using system provided dependancies which I haven't sorted out.
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>English</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>MegaGlest</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>${VER_MAJOR}.${VER_MINOR}.${VER_RELEASE}, © 2001-2015 The MegaGlest Team.</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>MegaGlest</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>org.megaglest.v${VER_MAJOR}-${VER_MINOR}-${VER_RELEASE}</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>MegaGlest</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>${VER_MAJOR}.${VER_MINOR}.${VER_RELEASE}</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>MGGL</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>${VER_MAJOR}.${VER_MINOR}.${VER_RELEASE}</string>
|
|
<key>NSMainNibFile</key>
|
|
<string>MainMenu</string>
|
|
<key>NSPrincipalClass</key>
|
|
<string>NSApplication</string>
|
|
</dict>
|
|
</plist>
|