Remove CPack legacy in synergyd

This commit is contained in:
Andrew Nelless 2017-03-09 13:49:30 +00:00
parent 926478e8dc
commit 2b3d3f9339
1 changed files with 3 additions and 10 deletions

View File

@ -23,17 +23,10 @@ include_directories(
) )
if (WIN32) if (WIN32)
add_executable(synergyd WIN32 ${sources}) add_executable (synergyd WIN32 ${sources})
else() else()
add_executable(synergyd ${sources}) add_executable (synergyd ${sources})
endif() endif()
target_link_libraries(synergyd target_link_libraries (synergyd
arch base common io ipc mt net platform synlib shared ${libs} ${OPENSSL_LIBS}) arch base common io ipc mt net platform synlib shared ${libs} ${OPENSSL_LIBS})
if (CONF_CPACK)
install(TARGETS
synergyd
COMPONENT core
DESTINATION bin)
endif()