From 8eb5e5f6ab289e3073934cf01054803f4983c719 Mon Sep 17 00:00:00 2001 From: Kearwood Gilbert Date: Mon, 6 Nov 2017 00:44:31 -0800 Subject: [PATCH] Allow older Boost version for Travis-CI --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 06e9ccc..a5c672c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -78,7 +78,7 @@ PROPERTIES set(Boost_USE_STATIC_LIBS ON) # only find static libs set(Boost_USE_MULTITHREADED ON) set(Boost_USE_STATIC_RUNTIME OFF) -find_package(Boost 1.65.1) +find_package(Boost 1.54.0) if(Boost_FOUND) include_directories(${Boost_INCLUDE_DIRS}) target_link_libraries(kraken ${Boost_LIBRARIES})