diff options
author | John Fultz <jfultz@wolfram.com> | 2019-01-14 03:56:20 -0600 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2019-01-14 03:56:20 -0600 |
commit | 0ec9a95998fddbccac464a96b457d28f30587dca (patch) | |
tree | e731a678d7064df8c07cc1dc4330697bbd8b9639 /quacker/quacker.pro | |
parent | 2c6b3b89da2a728ba6683d9f4455139372beb21b (diff) |
Fix icon for Xcode >=9 macOS build.
Xcode now wants an asset catalog thing
with proper .png files rather than a .icns
thing. Bits shuffled accordingly.
Also, higher res icon. Slightly different
design. Only on Mac for now.
Also, move minimum macOS to 10.9.
Also fix 1.0.4 update versioning oversight.
Diffstat (limited to 'quacker/quacker.pro')
-rw-r--r-- | quacker/quacker.pro | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/quacker/quacker.pro b/quacker/quacker.pro index ae12c34..24a7d25 100644 --- a/quacker/quacker.pro +++ b/quacker/quacker.pro @@ -48,10 +48,11 @@ win32 { macx { DEFINES += FORCE_SECONDARY_ARROW_GLYPHS=1 - ICON = quacker.icns BUNDLEID = com.Quackle.Quackle QMAKE_INFO_PLIST = Quackle.plist - QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.8 + QMAKE_ASSET_CATALOGS = $$PWD/Images.xcassets + QMAKE_ASSET_CATALOGS_APP_ICON = "AppIcon" + QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.9 # copy data/ directory into app bundle APP_ALPHABETS_FILES.files = ../data/alphabets |