From 9f6a2a485b9cde48fa66d791e57c5211796fe49a Mon Sep 17 00:00:00 2001 From: sukanka Date: Sun, 16 Nov 2025 22:13:03 +0800 Subject: [PATCH] fix for boost 1.89 --- cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 9a451dd910d..115c3a901ec 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -429,7 +429,7 @@ if(WASM_BUILD) else() # @todo review this, shouldn't this be all possible header-only now? # ... or rewritten using C++17 features? - set(BOOST_COMPONENTS system program_options regex thread date_time iostreams) + set(BOOST_COMPONENTS program_options regex thread date_time iostreams) endif() if(USE_MMAP)