HomeworldSDL/Mac/RaiderRetreat.plist
atsb 764ceee06a feat: macOS: Universal port (Intel and ARM64)
macOS: The game now compiles and runs on modern (macOS 11.5+) macs, both
on x86_64 and arm64

macOS: When compiled for Raider Retreat, the game now uses a separate directory

macOS: utility_mac.c and File_Mac.c are now used by the build system
instead of utility.c and File.c respectively. This reduces the overall
amount of hard to read `#if`ed code on all platforms.
2023-09-19 18:47:00 +02:00

29 lines
883 B
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>Raider Retreat</string>
<key>CFBundleIconFile</key>
<string>RaiderRetreat</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.9alpha</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.strategy-games</string>
<key>NSMainNibFile</key>
<string>main</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
</dict>
</plist>