From 3dfb74f1b984ab4a839a438576dab838ff85a0f1 Mon Sep 17 00:00:00 2001 From: Caio Oliveira Date: Sun, 7 Dec 2025 22:22:02 -0300 Subject: [PATCH] [cmake] Include Boost::context to fix building Signed-off-by: Caio Oliveira --- src/common/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 07e05a8fe4..60e8cfa5da 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -251,7 +251,7 @@ else() target_link_libraries(common PUBLIC Boost::headers) endif() -target_link_libraries(common PUBLIC Boost::filesystem) +target_link_libraries(common PUBLIC Boost::filesystem Boost::context) if (lz4_ADDED) target_include_directories(common PRIVATE ${lz4_SOURCE_DIR}/lib)