From 2b3d3f933913db1e867354beea5106da5a46f821 Mon Sep 17 00:00:00 2001 From: Andrew Nelless Date: Thu, 9 Mar 2017 13:49:30 +0000 Subject: [PATCH] Remove CPack legacy in synergyd --- src/cmd/synergyd/CMakeLists.txt | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/cmd/synergyd/CMakeLists.txt b/src/cmd/synergyd/CMakeLists.txt index 52152fba..217291bb 100644 --- a/src/cmd/synergyd/CMakeLists.txt +++ b/src/cmd/synergyd/CMakeLists.txt @@ -23,17 +23,10 @@ include_directories( ) if (WIN32) - add_executable(synergyd WIN32 ${sources}) + add_executable (synergyd WIN32 ${sources}) else() - add_executable(synergyd ${sources}) + add_executable (synergyd ${sources}) endif() -target_link_libraries(synergyd +target_link_libraries (synergyd arch base common io ipc mt net platform synlib shared ${libs} ${OPENSSL_LIBS}) - -if (CONF_CPACK) - install(TARGETS - synergyd - COMPONENT core - DESTINATION bin) -endif()