We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b576b65 commit 2290f3fCopy full SHA for 2290f3f
1 file changed
dependencies/CMakeLists.txt
@@ -9,8 +9,14 @@ FetchContent_Declare(
9
)
10
11
12
+FetchContent_Declare(
13
+ boost_ext
14
+ URL https://archives.boost.io/release/1.84.0/source/boost_1_84_0.tar.bz2
15
+)
16
+FetchContent_MakeAvailable(boost_ext)
17
+
18
add_library(boost_headers INTERFACE)
-target_include_directories(boost_headers INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}/boost_1_84_0")
19
+target_include_directories(boost_headers INTERFACE "${boost_ext_SOURCE_DIR}")
20
21
if(NOT EMSCRIPTEN)
22
FetchContent_Declare(
0 commit comments