2005-08-31 02:20:51 +00:00
|
|
|
# Boost Typeof Library test Jamfile
|
|
|
|
|
|
|
|
|
|
subproject libs/typeof/test ;
|
|
|
|
|
|
|
|
|
|
# bring in rules for testing
|
|
|
|
|
import testing ;
|
|
|
|
|
|
|
|
|
|
test-suite "typeof"
|
|
|
|
|
:
|
|
|
|
|
[ compile type.cpp : <define>BOOST_TYPEOF_NATIVE : type_native ]
|
|
|
|
|
[ compile type.cpp : <define>BOOST_TYPEOF_COMPLIANT : type_emulation ]
|
2005-09-09 00:15:59 +00:00
|
|
|
|
|
|
|
|
[ compile template_type.cpp : <define>BOOST_TYPEOF_NATIVE : template_type_native ]
|
|
|
|
|
[ compile template_type.cpp : <define>BOOST_TYPEOF_COMPLIANT : template_type_emulation ]
|
|
|
|
|
|
|
|
|
|
[ compile template_int.cpp : <define>BOOST_TYPEOF_NATIVE : template_int_native ]
|
|
|
|
|
[ compile template_int.cpp : <define>BOOST_TYPEOF_COMPLIANT : template_int_emulation ]
|
|
|
|
|
|
|
|
|
|
[ compile template_tpl.cpp : <define>BOOST_TYPEOF_NATIVE : template_tpl_native ]
|
|
|
|
|
[ compile template_tpl.cpp : <define>BOOST_TYPEOF_COMPLIANT : template_tpl_emulation ]
|
2005-08-31 02:20:51 +00:00
|
|
|
;
|