summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt5
-rw-r--r--cmake/MacOSXBundleInfo.plist.in2
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>