From 6617e1b84e28a2c3635a2c72d22a840851a0e0e8 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Thu, 14 Sep 2017 12:08:56 +0100 Subject: [PATCH] #6151 Remove cmake install calls --- src/cmd/synergyc/CMakeLists.txt | 7 ------- src/cmd/synergys/CMakeLists.txt | 8 -------- 2 files changed, 15 deletions(-) diff --git a/src/cmd/synergyc/CMakeLists.txt b/src/cmd/synergyc/CMakeLists.txt index ed44ff69..d073e342 100644 --- a/src/cmd/synergyc/CMakeLists.txt +++ b/src/cmd/synergyc/CMakeLists.txt @@ -48,10 +48,3 @@ endif() add_executable(synergyc ${sources}) target_link_libraries(synergyc arch base client common io mt net ipc platform server synlib ${libs} ${OPENSSL_LIBS}) - -if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") - install (TARGETS synergyc DESTINATION ${SYNERGY_BUNDLE_BINARY_DIR}) -elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux") - install (TARGETS synergyc DESTINATION bin) -endif() - diff --git a/src/cmd/synergys/CMakeLists.txt b/src/cmd/synergys/CMakeLists.txt index 4393455c..882d854d 100644 --- a/src/cmd/synergys/CMakeLists.txt +++ b/src/cmd/synergys/CMakeLists.txt @@ -48,11 +48,3 @@ endif() add_executable(synergys ${sources}) target_link_libraries(synergys arch base client common io mt net ipc platform server synlib ${libs} ${OPENSSL_LIBS}) - -if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") - install (TARGETS synergys DESTINATION ${SYNERGY_BUNDLE_BINARY_DIR}) -elseif (${CMAKE_SYSTEM_NAME} MATCHES "Linux") - install (TARGETS synergys DESTINATION bin) -endif() - -