diff options
| -rw-r--r-- | monero-wallet-gui.pro | 3 | ||||
| -rw-r--r-- | share/Info.plist | 29 |
2 files changed, 31 insertions, 1 deletions
diff --git a/monero-wallet-gui.pro b/monero-wallet-gui.pro index cd48a4b7..91f5db5a 100644 --- a/monero-wallet-gui.pro +++ b/monero-wallet-gui.pro @@ -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 diff --git a/share/Info.plist b/share/Info.plist new file mode 100644 index 00000000..d8160934 --- /dev/null +++ b/share/Info.plist @@ -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 |
