diff options
author | Joseph Donofry <joedonofry@gmail.com> | 2024-01-24 23:39:51 -0500 |
---|---|---|
committer | Joseph Donofry <joedonofry@gmail.com> | 2024-01-24 23:39:51 -0500 |
commit | 36041e525a765e99152c70ca103a945c75c5df19 (patch) | |
tree | 58583fa42fdf1ef2f5ec56e12bf6bdf559c59e45 | |
parent | Add Matrix URL handling support to MacOS (diff) | |
download | nheko-36041e525a765e99152c70ca103a945c75c5df19.tar.xz |
Make sure to use our info plist template
-rw-r--r-- | CMakeLists.txt | 5 | ||||
-rw-r--r-- | cmake/MacOSXBundleInfo.plist.in | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 201e51aa..fc04e3a0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -676,6 +676,11 @@ if(WIN32) else() qt_add_executable(nheko ${OS_BUNDLE} ${NHEKO_DEPS}) + if(APPLE) + set_target_properties(nheko PROPERTIES MACOSX_BUNDLE_INFO_PLIST + "${CMAKE_CURRENT_SOURCE_DIR}/cmake/MacOSXBundleInfo.plist.in") + endif() + if(HAVE_BACKTRACE_SYMBOLS_FD AND NOT CMAKE_BUILD_TYPE STREQUAL "Release") set_target_properties(nheko PROPERTIES ENABLE_EXPORTS ON) endif() diff --git a/cmake/MacOSXBundleInfo.plist.in b/cmake/MacOSXBundleInfo.plist.in index 60a78b99..d05f1b25 100644 --- a/cmake/MacOSXBundleInfo.plist.in +++ b/cmake/MacOSXBundleInfo.plist.in @@ -45,5 +45,7 @@ </array> </dict> </array> + <key>NSSupportsAutomaticGraphicsSwitching</key> + <true/> </dict> </plist> |