diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-11 16:41:07 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-11 16:41:07 +0300 |
commit | b97239182936761387f06e176d8dee10f5d5d3ea (patch) | |
tree | a52b905feaf69a0db2e5eb8b086c97f9bb2e69ef | |
parent | Travis: fast_finish (diff) | |
download | math-server-b97239182936761387f06e176d8dee10f5d5d3ea.tar.gz math-server-b97239182936761387f06e176d8dee10f5d5d3ea.zip |
add Boost constraints to CMakeLists.txt
-rw-r--r-- | client/CMakeLists.txt | 2 | ||||
-rw-r--r-- | server/main/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt index 0a7937b..505f025 100644 --- a/client/CMakeLists.txt +++ b/client/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(Boost REQUIRED COMPONENTS filesystem program_options) +find_package(Boost 1.66.0 REQUIRED COMPONENTS filesystem program_options) set(CMAKE_THREAD_PREFER_PTHREAD ON) set(THREADS_PREFER_PTHREAD_FLAG ON) diff --git a/server/main/CMakeLists.txt b/server/main/CMakeLists.txt index fe33cb5..94abed7 100644 --- a/server/main/CMakeLists.txt +++ b/server/main/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(Boost REQUIRED COMPONENTS filesystem program_options) +find_package(Boost 1.66.0 REQUIRED COMPONENTS filesystem program_options) set(CMAKE_THREAD_PREFER_PTHREAD ON) set(THREADS_PREFER_PTHREAD_FLAG ON) |