456f108336aab7044fb8a9be9a5184c852b6c879
[platform/upstream/boost.git] / libs / variant / test / Jamfile.v2
1 #  Boost.Variant Library test Jamfile
2 #
3 #  Copyright (C) 2003, Eric Friedman, Itay Maman.
4 #
5 #  This material is provided "as is", with absolutely no warranty expressed
6 #  or implied. Any use is at your own risk.
7 #
8 #  Permission to use or copy this software for any purpose is hereby granted
9 #  without fee, provided the above notices are retained on all copies.
10 #  Permission to modify the code and to distribute modified code is granted,
11 #  provided the above notices are retained, and a notice that the code was
12 #  modified is included with the above copyright notice.
13 #
14 project
15     : requirements
16         #<dependency>/boost/test//minimal
17         <toolset>msvc:<asynch-exceptions>on
18     ;
19     
20 test-suite variant
21      : 
22     [ run test1.cpp class_a.cpp : : : : variant_test1 ]
23     [ run test2.cpp : : : : variant_test2 ]
24     [ run test3.cpp : : : : variant_test3 ]
25     [ run test4.cpp class_a.cpp 
26         : : : : variant_test4 ]
27     [ run test5.cpp : : : : variant_test5 ]
28     [ run test6.cpp : : : : variant_test6 ]
29     [ run test7.cpp : : : : variant_test7 ]
30     [ run test8.cpp : : : : variant_test8 ]
31     [ run recursive_variant_test.cpp ]
32     [ run variant_reference_test.cpp ]
33     [ run variant_comparison_test.cpp ]
34     [ run variant_visit_test.cpp ]
35     [ run hash_variant_test.cpp ]
36    ; 
37
38