From 9ada1c0fd699d9b9c746688c5c39cd72a0c7593d Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 17 Oct 2020 10:49:37 +0300 Subject: cmake: minor tweks for the greater good --- client/CMakeLists.txt | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'client') diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 505f025..dba0eea 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -1,12 +1,18 @@ -find_package(Boost 1.66.0 REQUIRED COMPONENTS filesystem program_options) +file(GLOB client_cpp "*.cpp") +file(GLOB client_hpp "*.hpp") +add_executable(client ${client_cpp} ${client_hpp}) +set_target_properties(client PROPERTIES OUTPUT_NAME math-client) set(CMAKE_THREAD_PREFER_PTHREAD ON) set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) +target_link_libraries(client PRIVATE Threads::Threads) -add_executable(client main.cpp) -target_link_libraries(client PRIVATE Boost::disable_autolinking Boost::filesystem Boost::program_options Threads::Threads) -set_target_properties(client PROPERTIES OUTPUT_NAME math-client) +find_package(Boost 1.66.0 REQUIRED COMPONENTS filesystem program_options) +target_link_libraries(client PRIVATE + Boost::disable_autolinking + Boost::filesystem + Boost::program_options) install(TARGETS client RUNTIME DESTINATION bin) if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") -- cgit v1.2.3