1#============================================================================== 2# Copyright (c) 2002 Joel de Guzman 3# http://spirit.sourceforge.net/ 4# 5# Use, modification and distribution is subject to the Boost Software 6# License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 7# http://www.boost.org/LICENSE_1_0.txt) 8#============================================================================== 9# 10# Phoenix examples boost-jam file 11# Joel de Guzman [Sept 27, 2002] 12# 13 14unit-test binary_tests 15 : binary_tests.cpp 16 : 17 ; 18 19unit-test binders_tests 20 : binders_tests.cpp 21 : 22 ; 23 24unit-test functors_tests 25 : functors_tests.cpp 26 : 27 ; 28 29unit-test iostream_tests 30 : iostream_tests.cpp 31 : 32 ; 33 34 35unit-test mixed_binary_tests 36 : mixed_binary_tests.cpp 37 : 38 ; 39 40 41unit-test more_expressions_tests 42 : more_expressions_tests.cpp 43 : 44 ; 45 46 47unit-test primitives_tests 48 : primitives_tests.cpp 49 : 50 ; 51 52 53unit-test statements_tests 54 : statements_tests.cpp 55 : 56 ; 57 58 59unit-test stl_tests 60 : stl_tests.cpp 61 : 62 ; 63 64 65unit-test tuples_tests 66 : tuples_tests.cpp 67 : 68 ; 69 70 71unit-test unary_tests 72 : unary_tests.cpp 73 : 74 ; 75 76 77unit-test new_tests 78 : new_test.cpp 79 : 80 ; 81 82