Merge pull request #1367

894b10e add Info.plist template
This commit is contained in:
luigi1111 2018-05-07 15:53:08 -05:00
commit 4f7a4a4f70
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
2 changed files with 31 additions and 1 deletions

View file

@ -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

29
share/Info.plist Normal file
View file

@ -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