add Info.plist template

pull/2/head
pazos 6 years ago
parent 7cea134352
commit 894b10eeb4

@ -439,5 +439,6 @@ DISTFILES += \
# windows application icon
RC_ICONS = images/appicon.ico
# mac application icon
# mac Info.plist & application icon
QMAKE_INFO_PLIST = $$PWD/share/Info.plist
ICON = $$PWD/images/appicon.icns

@ -0,0 +1,29 @@
<?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>LSMinimumSystemVersion</key>
<string>10.10.0</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>CFBundleIconFile</key>
<string>appicon.icns</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleExecutable</key>
<string>monero-wallet-gui</string>
<key>CFBundleIdentifier</key>
<string>org.monero-project.monero-wallet-gui</string>
<key>NSSupportsAutomaticGraphicsSwitching</key>
<true/>
</dict>
</plist