From e1b73ef0ef976ac4a4a494405d57ad7c03e7a1f2 Mon Sep 17 00:00:00 2001 From: Bruno Postle Date: Fri, 24 Oct 2025 15:35:19 +0100 Subject: [PATCH] Fix build broken by a6d20c0 - link iostreams FileReader.cpp now uses boost::iostreams::mapped_file regardless of USE_MMAP setting --- cmake/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 2814511b8d..8c48f7bdfd 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -428,7 +428,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) + set(BOOST_COMPONENTS system program_options regex thread date_time iostreams) endif() if(USE_MMAP)