From 31f72cdbff0923efa17d3349b70948fca9b6ed06 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 22 May 2023 08:55:13 -0500 Subject: [PATCH] Remove Boost_NO_BOOST_CMAKE=ON to fix Windows build (#1298) --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8920b8ef..7e752c07 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -134,8 +134,6 @@ pkg_check_modules(CURL REQUIRED libcurl) if(WIN32) set(Boost_USE_STATIC_LIBS ON) # cmake-lint: disable=C0103 - # workaround to prevent link errors against icudata, icui18n - set(Boost_NO_BOOST_CMAKE ON) # cmake-lint: disable=C0103 endif() find_package(Boost COMPONENTS locale log filesystem program_options REQUIRED)