From f1d749e3cd3aaa5ec875ea29ca010b73d3174f2c Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 7 Apr 2021 00:26:56 +0300 Subject: cmake: slight CMakeLists.txt refactoring --- client/CMakeLists.txt | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'client/CMakeLists.txt') diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 0343ee2..1891e90 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -1,17 +1,15 @@ -file(GLOB client_src "*.cpp" "*.hpp") -add_executable(client ${client_src}) -set_target_properties(client PROPERTIES OUTPUT_NAME math-client) - +find_package(Boost 1.66.0 REQUIRED COMPONENTS filesystem program_options) set(CMAKE_THREAD_PREFER_PTHREAD ON) set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) -target_link_libraries(client PRIVATE Threads::Threads) -find_package(Boost 1.66.0 REQUIRED COMPONENTS filesystem program_options) +file(GLOB client_src "*.cpp" "*.hpp") +add_executable(client ${client_src}) +set_target_properties(client PROPERTIES OUTPUT_NAME math-client) +target_link_libraries(client PRIVATE Threads::Threads) target_link_libraries(client PRIVATE Boost::disable_autolinking Boost::filesystem Boost::program_options) - install(TARGETS client RUNTIME DESTINATION bin) install_pdbs(TARGETS client DESTINATION bin) -- cgit v1.2.3