mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-10-31 23:55:06 -04:00
b7342a7847
* Add Architecture Priority to Info.plist This allows the app bundle to be launched natively on Arm without the need for Rosetta. * Remove arch shenanigans in soh-macos.sh.in Shouldn't be necessary now... * Add back launching the binary in soh-macos.sh.in Accidentally removed launching the binary from the script.
43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//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>CFBundleName</key>
|
|
<string>Ship of Harkinian</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>soh</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>@CMAKE_PROJECT_VERSION@</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>soh.icns</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>com.shipofharkinian.ShipOfHarkinian</string>
|
|
<key>CFBundleDocumentTypes</key>
|
|
<array>
|
|
</array>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>@CMAKE_PROJECT_VERSION@</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>ZOoT</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>@CMAKE_PROJECT_VERSION@</string>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>Copyright 2022 HarbourMasters.</string>
|
|
<key>LSApplicationCategoryType</key>
|
|
<string>public.app-category.games</string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>10.15</string>
|
|
<key>LSArchitecturePriority</key>
|
|
<array>
|
|
<string>arm64</string>
|
|
<string>x86_64</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|