modeco80
ddd3483620
currently the main program is just some stackful coro example stuff that i used just to test i'll add beast too in a sec but just. hang on
13 lines
427 B
CMake
13 lines
427 B
CMake
# Hack but it works :)
|
|
set(BOOST_SUPERPROJECT_VERSION 1.85.0)
|
|
|
|
# Boost Context Have Sucks
|
|
set(BOOST_CONTEXT_ASSEMBLER clang_gas CACHE STRING "")
|
|
set(BOOST_CONTEXT_ASM_SUFFIX .S CACHE STRING "")
|
|
|
|
# Populate library list
|
|
file(STRINGS ${CMAKE_CURRENT_SOURCE_DIR}/list _COLLABVM3_BOOST_LIBRARY_LIST)
|
|
foreach(lib ${_COLLABVM3_BOOST_LIBRARY_LIST})
|
|
message(STATUS "Adding boost module ${lib}")
|
|
add_subdirectory(${lib})
|
|
endforeach()
|