Change all <source> references to <library>.

This commit is contained in:
Rene Rivera 2024-07-20 19:39:36 -05:00 committed by Barend Gehrels
parent db5cbbbe15
commit d0b33c770c
8 changed files with 13 additions and 13 deletions

View File

@ -18,8 +18,8 @@
project boost-geometry-doc-example-algorithms project boost-geometry-doc-example-algorithms
: requirements : requirements
<source>/boost/assign//boost_assign <library>/boost/assign//boost_assign
<source>/boost/foreach//boost_foreach <library>/boost/foreach//boost_foreach
; ;
exe append : append.cpp ; exe append : append.cpp ;

View File

@ -29,5 +29,5 @@ exe interior_type : interior_type.cpp ;
exe point_type : point_type.cpp ; exe point_type : point_type.cpp ;
exe ring_type : ring_type.cpp ; exe ring_type : ring_type.cpp ;
exe rings : rings.cpp ; exe rings : rings.cpp ;
exe tag : tag.cpp : <source>/boost/assign//boost_assign ; exe tag : tag.cpp : <library>/boost/assign//boost_assign ;
exe tag_cast : tag_cast.cpp ; exe tag_cast : tag_cast.cpp ;

View File

@ -11,7 +11,7 @@
project boost-geometry-doc-src-example-geometries-adapted-boost_range project boost-geometry-doc-src-example-geometries-adapted-boost_range
: requirements : requirements
<source>/boost/assign//boost_assign <library>/boost/assign//boost_assign
; ;
exe filtered : filtered.cpp ; exe filtered : filtered.cpp ;

View File

@ -10,9 +10,9 @@
# http://www.boost.org/LICENSE_1_0.txt) # http://www.boost.org/LICENSE_1_0.txt)
project boost-geometry-example project boost-geometry-example
: requirements : requirements
<source>/boost/foreach//boost_foreach <library>/boost/foreach//boost_foreach
; ;
exe 01_point_example : 01_point_example.cpp ; exe 01_point_example : 01_point_example.cpp ;

View File

@ -18,7 +18,7 @@ import os ;
project boost-geometry-index-example project boost-geometry-index-example
: requirements : requirements
<source>/boost/foreach//boost_foreach <library>/boost/foreach//boost_foreach
; ;
local GLUT_ROOT = [ os.environ GLUT_ROOT ] ; local GLUT_ROOT = [ os.environ GLUT_ROOT ] ;

View File

@ -21,7 +21,7 @@ project boost-geometry-index-test
<toolset>msvc:<cxxflags>/bigobj <toolset>msvc:<cxxflags>/bigobj
<host-os>windows,<toolset>intel:<cxxflags>/bigobj <host-os>windows,<toolset>intel:<cxxflags>/bigobj
<library>/boost/timer//boost_timer <library>/boost/timer//boost_timer
<source>/boost/test//boost_test <library>/boost/test//boost_test
; ;
test-suite boost-geometry-index-detail test-suite boost-geometry-index-detail

View File

@ -25,7 +25,7 @@ rule test_all
<toolset>msvc:<cxxflags>/bigobj <toolset>msvc:<cxxflags>/bigobj
<target-os>windows,<toolset>intel:<cxxflags>/bigobj <target-os>windows,<toolset>intel:<cxxflags>/bigobj
<target-os>linux:<linkflags>"-lrt" <target-os>linux:<linkflags>"-lrt"
<source>/boost/interprocess//boost_interprocess <library>/boost/interprocess//boost_interprocess
] ; ] ;
} }

View File

@ -24,9 +24,9 @@ project boost-geometry-test
<toolset>clang:<cxxflags>-Wno-unneeded-internal-declaration # supress warning by Boost.None <toolset>clang:<cxxflags>-Wno-unneeded-internal-declaration # supress warning by Boost.None
<toolset>intel:<define>BOOST_GEOMETRY_TEST_ONLY_ONE_TYPE <toolset>intel:<define>BOOST_GEOMETRY_TEST_ONLY_ONE_TYPE
<host-os>windows,<toolset>intel:<cxxflags>/bigobj <host-os>windows,<toolset>intel:<cxxflags>/bigobj
<source>/boost/test//boost_test <library>/boost/test//boost_test
<source>/boost/foreach//boost_foreach <library>/boost/foreach//boost_foreach
<source>/boost/assign//boost_assign <library>/boost/assign//boost_assign
; ;
# Run minimal testset # Run minimal testset
@ -40,7 +40,7 @@ if ! [ os.environ TRAVIS ]
{ {
build-project core ; build-project core ;
build-project concepts ; build-project concepts ;
build-project geometries ; build-project geometries ;
build-project arithmetic ; build-project arithmetic ;
build-project algorithms ; build-project algorithms ;