12 lines
333 B
CMake
12 lines
333 B
CMake
# Hack, but it works :)
|
|
set(BOOST_SUPERPROJECT_VERSION 1.84.0)
|
|
|
|
# Populate library list
|
|
file(STRINGS ${CMAKE_CURRENT_SOURCE_DIR}/list _COLLABVM3_BOOST_LIBRARY_LIST)
|
|
|
|
# Pull in each boost module/library
|
|
foreach(lib ${_COLLABVM3_BOOST_LIBRARY_LIST})
|
|
message(STATUS "Adding boost module ${lib}")
|
|
add_subdirectory(${lib})
|
|
endforeach()
|