CMake: Disable install targets on Windows

This commit is contained in:
Joshua Vandaële
2026-07-24 03:45:13 +02:00
parent 8366609fc1
commit fa83b0fe49
4 changed files with 8 additions and 5 deletions
+2 -1
View File
@@ -65,5 +65,6 @@ if(USE_DISCORD_PRESENCE)
endif()
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} dolphin-nogui)
if (NOT WIN32)
install(TARGETS dolphin-nogui RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()
+1 -1
View File
@@ -701,7 +701,7 @@ if(APPLE)
"$<TARGET_BUNDLE_DIR:dolphin-emu>"
)
endif()
else()
elseif (NOT WIN32)
install(TARGETS dolphin-emu RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()
+2
View File
@@ -34,4 +34,6 @@ if(MSVC)
endif()
set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} dolphin-tool)
if (NOT WIN32)
install(TARGETS dolphin-tool RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()
+1 -1
View File
@@ -1,5 +1,5 @@
add_executable(dsptool DSPTool.cpp StubHost.cpp)
target_link_libraries(dsptool core)
if(NOT APPLE)
if(NOT APPLE AND NOT WIN32)
install(TARGETS dsptool RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()