diff options
| author | pazos <paziusss@gmail.com> | 2018-05-02 17:27:22 +0200 |
|---|---|---|
| committer | pazos <paziusss@gmail.com> | 2018-05-02 17:27:22 +0200 |
| commit | 894b10eeb4fb2edc711c28fa24e46d8ce6fe3a04 (patch) | |
| tree | ba6019706a1e5878c48183e60fc8beebaad37241 | |
| parent | 7cea1343521de6e0f70f087f15707f467819b0ad (diff) | |
| download | monzero-gui-894b10eeb4fb2edc711c28fa24e46d8ce6fe3a04.tar.gz monzero-gui-894b10eeb4fb2edc711c28fa24e46d8ce6fe3a04.tar.xz monzero-gui-894b10eeb4fb2edc711c28fa24e46d8ce6fe3a04.zip | |
add Info.plist template
| -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 |
