summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--application/CMakeLists.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/application/CMakeLists.txt b/application/CMakeLists.txt
index 0821aa6c..1d2880d6 100644
--- a/application/CMakeLists.txt
+++ b/application/CMakeLists.txt
@@ -348,6 +348,12 @@ if(MultiMC_LAYOUT_REAL STREQUAL "mac-bundle")
# Add the icon
install(FILES resources/MultiMC.icns DESTINATION ${RESOURCES_DEST_DIR})
+
+ # Add qt.conf - because for some reason, an empty file is needed to make things work on macOS
+ install(
+ CODE "file(WRITE \"\${CMAKE_INSTALL_PREFIX}/${RESOURCES_DEST_DIR}/qt.conf\" \"\")"
+ COMPONENT Runtime
+ )
elseif(MultiMC_LAYOUT_REAL STREQUAL "lin-bundle")
set(BINARY_DEST_DIR "bin")
set(LIBRARY_DEST_DIR "bin")