examples & tests use context instead of coroutine.

This commit is contained in:
Klemens
2023-01-02 10:00:03 +08:00
committed by Klemens Morgenstern
parent 1841a592d6
commit 99bceb5bff
24 changed files with 156 additions and 37 deletions

View File

@@ -189,8 +189,8 @@ if (MSVC)
else()
set(BOOST_INCLUDEDIR ${BOOST_ROOT})
set(BOOST_LIBRARYDIR ${BOOST_ROOT}/stage/lib)
find_package(Boost COMPONENTS coroutine filesystem system thread REQUIRED)
link_libraries(Boost::coroutine Boost::filesystem Boost::system Boost::thread)
find_package(Boost COMPONENTS context filesystem system thread REQUIRED)
link_libraries(Boost::context Boost::filesystem Boost::system Boost::thread)
endif()
link_directories(${BOOST_ROOT}/stage/lib)