Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/spirit/phoenix/example/Jamfile @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 1.7 KB
Line 
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
14subproject libs/spirit/phoenix/example ;
15
16SPIRIT_HEADER_INCLUDE ?= ../../../.. ;
17
18spirit-header-include = <sysinclude>$(SPIRIT_HEADER_INCLUDE) ;
19
20if $(SPIRIT_BOOST_HEADER_INCLUDE)
21{
22    spirit-header-include += <sysinclude>$(SPIRIT_BOOST_HEADER_INCLUDE) ;
23}
24
25#unit-test sample1
26#    : fundamental/sample1.cpp
27#    : $(spirit-header-include)
28#    :
29#    ;
30
31unit-test sample2
32    : fundamental/sample2.cpp
33    : $(spirit-header-include)
34    :
35    ;
36
37unit-test sample3
38    : fundamental/sample3.cpp
39    : $(spirit-header-include)
40    :
41    ;
42
43unit-test sample4
44    : fundamental/sample4.cpp
45    : $(spirit-header-include)
46    :
47    ;
48
49unit-test sample5
50    : fundamental/sample5.cpp
51    : $(spirit-header-include)
52    :
53    ;
54
55unit-test sample6
56    : fundamental/sample6.cpp
57    : $(spirit-header-include)
58    :
59    ;
60
61unit-test sample7
62    : fundamental/sample7.cpp
63    : $(spirit-header-include)
64    :
65    ;
66
67unit-test sample8
68    : fundamental/sample8.cpp
69    : $(spirit-header-include)
70    :
71    ;
72
73unit-test sample9
74    : fundamental/sample9.cpp
75    : $(spirit-header-include)
76    :
77    ;
78
79unit-test sample10
80    : fundamental/sample10.cpp
81    : $(spirit-header-include)
82    :
83    ;
84
85unit-test closures
86    : fundamental/closures.cpp
87    : $(spirit-header-include)
88    :
89    ;
90
Note: See TracBrowser for help on using the repository browser.