summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinNoGUI
diff options
context:
space:
mode:
authorJoshua Vandaƫle <joshua@vandaele.software>2026-05-03 16:26:36 +0200
committerJoshua Vandaƫle <joshua@vandaele.software>2026-07-24 03:45:13 +0200
commitfa83b0fe49a1979732e2f573c965efea9db10916 (patch)
tree01a19b8bda60107096d477de83a49322e56a2bd3 /Source/Core/DolphinNoGUI
parent8366609fc1b7493861db11b236ad4b2b9b5cdb2a (diff)
CMake: Disable install targets on Windows
Diffstat (limited to 'Source/Core/DolphinNoGUI')
-rw-r--r--Source/Core/DolphinNoGUI/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Core/DolphinNoGUI/CMakeLists.txt b/Source/Core/DolphinNoGUI/CMakeLists.txt
index 9dad1b5f86..51c3fff708 100644
--- a/Source/Core/DolphinNoGUI/CMakeLists.txt
+++ b/Source/Core/DolphinNoGUI/CMakeLists.txt
@@ -65,5 +65,6 @@ if(USE_DISCORD_PRESENCE)
endif()
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} dolphin-nogui)
-install(TARGETS dolphin-nogui RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
-
+if (NOT WIN32)
+ install(TARGETS dolphin-nogui RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
+endif()