Change all <source> references to <library>.

This commit is contained in:
Rene Rivera
2024-07-20 21:27:22 -05:00
parent 11a69febcb
commit c1a09affd7

View File

@ -9,8 +9,8 @@ import testing ;
import set ;
project : requirements
<source>/boost/core//boost_core
<source>/boost/lexical_cast//boost_lexical_cast
<library>/boost/core//boost_core
<library>/boost/lexical_cast//boost_lexical_cast
;
# The special requirement is not ported yet.
@ -27,7 +27,7 @@ project : requirements
# [ replace-properties $(properties) : <build>no ] ;
# }
# }
#
#
# return $(properties) ;
#}
@ -36,8 +36,8 @@ rule typeof-test ( source )
return [ compile $(source) : <define>BOOST_TYPEOF_NATIVE :
$(source:B)_native ]
[ compile $(source) : <define>BOOST_TYPEOF_EMULATION :
$(source:B)_emulation ]
;
$(source:B)_emulation ]
;
}
rule all-tests ( )
@ -51,12 +51,12 @@ rule all-tests ( )
all += [ run odr1.cpp odr2.cpp : : : <define>BOOST_TYPEOF_NATIVE :
odr_native ] ;
all += [ run odr1.cpp odr2.cpp : : : <define>BOOST_TYPEOF_EMULATION :
odr_emulation ] ;
all += [ run odr_no_uns1.cpp odr_no_uns2.cpp : : : <define>BOOST_TYPEOF_EMULATION :
odr_no_uns ] ;
return $(all) ;
odr_emulation ] ;
all += [ run odr_no_uns1.cpp odr_no_uns2.cpp : : : <define>BOOST_TYPEOF_EMULATION :
odr_no_uns ] ;
return $(all) ;
}
test-suite "typeof"
test-suite "typeof"
: [ all-tests ]
;