Remove static_assert from dependencies

This commit is contained in:
Peter Dimov
2025-10-21 15:45:50 +03:00
parent a330736438
commit 87b410ddfa
4 changed files with 1 additions and 3 deletions

View File

@@ -16,7 +16,6 @@ target_link_libraries(boost_core
INTERFACE INTERFACE
Boost::assert Boost::assert
Boost::config Boost::config
Boost::static_assert
Boost::throw_exception Boost::throw_exception
) )

View File

@@ -8,7 +8,6 @@ require-b2 5.2 ;
constant boost_dependencies : constant boost_dependencies :
/boost/assert//boost_assert /boost/assert//boost_assert
/boost/config//boost_config /boost/config//boost_config
/boost/static_assert//boost_static_assert
/boost/throw_exception//boost_throw_exception /boost/throw_exception//boost_throw_exception
; ;

View File

@@ -14,6 +14,7 @@ import testing ;
project : requirements project : requirements
<library>/boost/core//boost_core <library>/boost/core//boost_core
<library>/boost/static_assert//boost_static_assert
<library>/boost/type_traits//boost_type_traits <library>/boost/type_traits//boost_type_traits
<warnings>extra <warnings>extra
<toolset>msvc:<warnings-as-errors>on <toolset>msvc:<warnings-as-errors>on

View File

@@ -9,7 +9,6 @@ project(cmake_subdir_test LANGUAGES CXX)
add_subdirectory(../.. boostorg/core) add_subdirectory(../.. boostorg/core)
add_subdirectory(../../../assert boostorg/assert) add_subdirectory(../../../assert boostorg/assert)
add_subdirectory(../../../config boostorg/config) add_subdirectory(../../../config boostorg/config)
add_subdirectory(../../../static_assert boostorg/static_assert)
add_subdirectory(../../../throw_exception boostorg/throw_exception) add_subdirectory(../../../throw_exception boostorg/throw_exception)
add_executable(quick ../quick.cpp) add_executable(quick ../quick.cpp)