Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/tools/build/v2/test/dependency-test/Jamfile @ 12

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

added boost

File size: 416 bytes
Line 
1
2project test
3    : requirements <include>src1
4    ;
5
6exe a
7    : x.foo a.cpp a_c.c
8    ;
9   
10exe b
11    : b.cpp
12    ;   
13   
14# Because of <define>, c.cpp will be compiled to different
15# directory than everything for main target "a". Therefore
16# without <implicit-dependency>, it won't find "x.h", which is part
17# of "a"'s dependency graph.
18exe c
19    : c.cpp
20    : <define>FOO <implicit-dependency>a
21    ;   
Note: See TracBrowser for help on using the repository browser.