diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-17 10:49:37 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-17 10:49:37 +0300 |
commit | 9ada1c0fd699d9b9c746688c5c39cd72a0c7593d (patch) | |
tree | 31c95244174fb686f09e0979d0d2e42ede357c8e /client/CMakeLists.txt | |
parent | AppVeyor: only Debug on Win32 (diff) | |
download | math-server-9ada1c0fd699d9b9c746688c5c39cd72a0c7593d.tar.gz math-server-9ada1c0fd699d9b9c746688c5c39cd72a0c7593d.zip |
cmake: minor tweks for the greater good
Diffstat (limited to '')
-rw-r--r-- | client/CMakeLists.txt | 14 |
1 files changed, 10 insertions, 4 deletions
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") |