Change all <source> references to <library>.

This commit is contained in:
Rene Rivera
2024-07-20 21:25:39 -05:00
parent 6bc7ec7e6b
commit 0925dcce4e

View File

@ -14,10 +14,10 @@ import testing ;
project
: requirements
<source>/boost/align//boost_align
<source>/boost/container_hash//boost_container_hash
<source>/boost/functional//boost_functional
<source>/boost/smart_ptr//boost_smart_ptr
<library>/boost/align//boost_align
<library>/boost/container_hash//boost_container_hash
<library>/boost/functional//boost_functional
<library>/boost/smart_ptr//boost_smart_ptr
<toolset>gcc:<cxxflags>-Wno-non-virtual-dtor
<toolset>gcc:<cxxflags>-Wno-deprecated-declarations
#<toolset>gcc:<cxxflags>-Wno-delete-non-virtual-dtor (not in 4.4/4.6)
@ -85,7 +85,7 @@ run shared_ptr_convertible_test.cpp ;
run wp_convertible_test.cpp ;
run ip_convertible_test.cpp ;
run allocate_shared_test.cpp ;
run sp_atomic_test.cpp : : : <source>/boost/atomic//boost_atomic ;
run sp_atomic_test.cpp : : : <library>/boost/atomic//boost_atomic ;
run esft_void_test.cpp ;
run esft_second_ptr_test.cpp ;
run make_shared_esft_test.cpp ;
@ -257,7 +257,7 @@ compile make_shared_msvc_test.cpp ;
compile lwm_win32_cs_test.cpp ;
run atomic_sp_test.cpp : : : <source>/boost/atomic//boost_atomic ;
run atomic_sp_test.cpp : : : <library>/boost/atomic//boost_atomic ;
run sp_constexpr_test.cpp ;
run sp_constexpr_test2.cpp ;
@ -414,19 +414,19 @@ run lsp_hash_test2.cpp ;
local MT = <threading>multi [ requires cxx11_decltype cxx11_noexcept ] <toolset>gcc-4.6:<build>no ;
run atomic_count_mt_test.cpp
: : : $(MT) <source>/boost/bind//boost_bind ;
: : : $(MT) <library>/boost/bind//boost_bind ;
run spinlock_mt_test.cpp
: : : $(MT) <source>/boost/bind//boost_bind ;
: : : $(MT) <library>/boost/bind//boost_bind ;
run spinlock_pool_mt_test.cpp
: : : $(MT) <source>/boost/bind//boost_bind ;
: : : $(MT) <library>/boost/bind//boost_bind ;
run shared_ptr_mt_test.cpp
: : : $(MT) <source>/boost/bind//boost_bind ;
: : : $(MT) <library>/boost/bind//boost_bind ;
run weak_ptr_mt_test.cpp
: : : $(MT) <source>/boost/bind//boost_bind ;
: : : $(MT) <library>/boost/bind//boost_bind ;
compile sp_report_implementation.cpp ;