From 06e9fef801f4551e7355da84df20164ae816f942 Mon Sep 17 00:00:00 2001 From: Zach Laine Date: Fri, 9 Dec 2016 23:23:53 -0600 Subject: [PATCH] Make the Boost required version in CMake EXACT. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e9b38d..c7cb97d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.5) -find_package(Boost 1.62.0) +find_package(Boost 1.62.0 EXACT) if (Boost_INCLUDE_DIRS) include_directories(${Boost_INCLUDE_DIRS}) else ()