From 1d00ab81c7ff0708d3c5f94132619bb5618324f0 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Thu, 22 Jan 2026 20:43:47 +0300 Subject: [PATCH] Remove dependencies on Boost.StaticAssert. Boost.StaticAssert has been merged into Boost.Config, so replace the dependency with Boost.Config. --- test/CMakeLists.txt | 2 +- test/cmake_subdir_test/CMakeLists.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 02f2da48..79734eea 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -27,7 +27,7 @@ macro(lib name macro) endmacro() -set(BOOST_TEST_LINK_LIBRARIES Boost::system Boost::core Boost::static_assert) +set(BOOST_TEST_LINK_LIBRARIES Boost::system Boost::config Boost::core) boost_test(SOURCES quick.cpp) diff --git a/test/cmake_subdir_test/CMakeLists.txt b/test/cmake_subdir_test/CMakeLists.txt index b245d71d..a7c0fb5a 100644 --- a/test/cmake_subdir_test/CMakeLists.txt +++ b/test/cmake_subdir_test/CMakeLists.txt @@ -13,7 +13,6 @@ add_subdirectory(../../../config boostorg/config) add_subdirectory(../../../core boostorg/core) add_subdirectory(../../../mp11 boostorg/mp11) add_subdirectory(../../../predef boostorg/predef) -add_subdirectory(../../../static_assert boostorg/static_assert) add_subdirectory(../../../throw_exception boostorg/throw_exception) add_subdirectory(../../../variant2 boostorg/variant2) add_subdirectory(../../../winapi boostorg/winapi)