mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 17:11:23 +00:00
f5163cc4ff
Define and use a template for Info.plist for the macOS bundle. The template uses the previously defined RPCS3_GIT_TAG variable for automatically generating the version strings, and also enables proper HiDPI support.
31 lines
957 B
XML
31 lines
957 B
XML
<?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>rpcs3</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>Open-source Sony PlayStation 3 emulator</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>rpcs3.icns</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>net.rpcs3.rpcs3</string>
|
|
<key>CFBundleLongVersionString</key>
|
|
<string>${RPCS3_GIT_TAG}</string>
|
|
<key>CFBundleName</key>
|
|
<string>RPCS3</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>${RPCS3_GIT_TAG}</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>${RPCS3_GIT_TAG}</string>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>Licensed under GPLv2</string>
|
|
<key>NSHighResolutionCapable</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|