From d14897bc23fd76530de51afb827f16a431070c8e Mon Sep 17 00:00:00 2001 From: Jan-Espen Oversand Date: Mon, 22 Dec 2025 16:28:29 +0100 Subject: [PATCH] Boost 1.89 removed the system stub --- Release/cmake/cpprestsdk-config.in.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Release/cmake/cpprestsdk-config.in.cmake b/Release/cmake/cpprestsdk-config.in.cmake index 72476b062d..811e79ac9e 100644 --- a/Release/cmake/cpprestsdk-config.in.cmake +++ b/Release/cmake/cpprestsdk-config.in.cmake @@ -17,9 +17,9 @@ endif() if(@CPPREST_USES_BOOST@) if(UNIX) - find_dependency(Boost COMPONENTS random system thread filesystem chrono atomic date_time regex) + find_dependency(Boost COMPONENTS random thread filesystem chrono atomic date_time regex) else() - find_dependency(Boost COMPONENTS system date_time regex) + find_dependency(Boost COMPONENTS date_time regex) endif() endif() include("${CMAKE_CURRENT_LIST_DIR}/cpprestsdk-targets.cmake")