diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c73339..1b2c5ab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,6 @@ target_link_libraries(boost_core INTERFACE Boost::assert Boost::config - Boost::static_assert Boost::throw_exception ) diff --git a/build.jam b/build.jam index e8992cc..a9c41d2 100644 --- a/build.jam +++ b/build.jam @@ -8,7 +8,6 @@ require-b2 5.2 ; constant boost_dependencies : /boost/assert//boost_assert /boost/config//boost_config - /boost/static_assert//boost_static_assert /boost/throw_exception//boost_throw_exception ; diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 898eff7..786089e 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -14,6 +14,7 @@ import testing ; project : requirements /boost/core//boost_core + /boost/static_assert//boost_static_assert /boost/type_traits//boost_type_traits extra msvc:on diff --git a/test/cmake_subdir_test/CMakeLists.txt b/test/cmake_subdir_test/CMakeLists.txt index b97fef5..045a476 100644 --- a/test/cmake_subdir_test/CMakeLists.txt +++ b/test/cmake_subdir_test/CMakeLists.txt @@ -9,7 +9,6 @@ project(cmake_subdir_test LANGUAGES CXX) add_subdirectory(../.. boostorg/core) add_subdirectory(../../../assert boostorg/assert) add_subdirectory(../../../config boostorg/config) -add_subdirectory(../../../static_assert boostorg/static_assert) add_subdirectory(../../../throw_exception boostorg/throw_exception) add_executable(quick ../quick.cpp)