2
0
mirror of https://github.com/boostorg/move.git synced 2026-01-19 04:22:10 +00:00
Files
move/example/Jamfile.v2
2024-07-20 19:40:42 -05:00

37 lines
801 B
Plaintext

##############################################################################
##
## (C) Copyright Ion Gaztanaga 2008-2009 Distributed under the Boost
## Software License, Version 1.0. (See accompanying file
## LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
##
##
##############################################################################
#
import testing ;
project : requirements
<library>/boost/container//boost_container
<library>/boost/type_traits//boost_type_traits
;
rule test_all
{
local all_rules = ;
for local fileb in [ glob *.cpp ]
{
all_rules += [ run $(fileb)
: # additional args
: # test-files
: # requirements
] ;
}
return $(all_rules) ;
}
test-suite move_example : [ test_all r ]
: <link>static
;