From 584cad864c8236af6637f91cd81ff8079f8e7f70 Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Tue, 17 Nov 2020 10:29:54 +0100 Subject: [PATCH] Add C:\local\ to the list of possibilities for boost. --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22639df322a..16548a2000f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,6 +68,9 @@ endif() if(NOT BOOST_DIRS) file(GLOB BOOST_DIRS "C:/Program Files (x86)/boost*") endif() +if(NOT BOOST_DIRS) + file(GLOB BOOST_DIRS "C:/local/boost*") +endif() if(BOOST_DIRS) list(GET BOOST_DIRS 0 boost_dir) list(APPEND CMAKE_PREFIX_PATH "${boost_dir}")