summary refs log tree commit diff
diff options
context:
space:
mode:
authorredsky17 <joedonofry@gmail.com>2019-02-08 04:04:07 +0000
committerredsky17 <joedonofry@gmail.com>2019-02-08 04:04:07 +0000
commit83d2d6d7dda79a6243ba47c484e1625d418cc67d (patch)
treeb3f3f5a554f7b6d8163a71cb7efa5e8ede5ad192
parentTweak build settings (diff)
downloadnheko-83d2d6d7dda79a6243ba47c484e1625d418cc67d.tar.xz
Adjust cmake minimum for included boost
-rw-r--r--deps/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt

index 5aab771c..9d70d104 100644 --- a/deps/CMakeLists.txt +++ b/deps/CMakeLists.txt
@@ -31,8 +31,8 @@ option(USE_BUNDLED_MATRIX_CLIENT "Use the bundled version of mtxclient." ${USE_BUNDLED}) if(USE_BUNDLED_BOOST) - # bundled boost is 1.68, which requires CMake 3.13 or greater. - cmake_minimum_required(VERSION 3.13) + # bundled boost is 1.68, which requires CMake 3.12 or greater. + cmake_minimum_required(VERSION 3.12) endif() include(ExternalProject)