From 07e4e674f09e435ba2a444296bbc12814cc8428e Mon Sep 17 00:00:00 2001 From: Tsukasa Sugiura Date: Mon, 6 Nov 2017 04:33:35 +0900 Subject: Reset settings to find boost libraries Reset the settings to find the boost libraries that installed by vcpkg. vcpkg will always rename to Boost libraries name that able to be find with default settings of FindBoost.cmake. --- scripts/buildsystems/vcpkg.cmake | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts') diff --git a/scripts/buildsystems/vcpkg.cmake b/scripts/buildsystems/vcpkg.cmake index 19fc99af7..68e29b87c 100644 --- a/scripts/buildsystems/vcpkg.cmake +++ b/scripts/buildsystems/vcpkg.cmake @@ -155,6 +155,8 @@ endfunction() macro(find_package name) if(name STREQUAL "Boost") unset(Boost_USE_STATIC_LIBS) + unset(Boost_USE_MULTITHREADED) + unset(Boost_USE_STATIC_RUNTIME) endif() _find_package(${ARGV}) endmacro() -- cgit v1.2.3