1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?Timo_R=C3=B6hling?= <timo@gaussglocke.de>
Date: Thu, 3 Dec 2020 11:26:28 +0100
Subject: Use system Boost
Forwarded: not-needed
---
cmake/modules/FindThirdpartyBoost.cmake | 1 +
1 file changed, 1 insertion(+)
diff --git a/cmake/modules/FindThirdpartyBoost.cmake b/cmake/modules/FindThirdpartyBoost.cmake
index 163a91a..dd65670 100644
--- a/cmake/modules/FindThirdpartyBoost.cmake
+++ b/cmake/modules/FindThirdpartyBoost.cmake
@@ -11,6 +11,7 @@ set(THIRDPARTY_BOOST_INCLUDE_DIR
"Path to thirdparty/boost"
)
+find_package(Boost REQUIRED)
find_package(Threads REQUIRED)
if(WIN32 OR APPLE OR ANDROID OR QNXNTO)
|