Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/inspect/build/Jamfile.v2 @ 30

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

updated boost from 1_33_1 to 1_34_1

File size: 609 bytes
Line 
1# Inspect Jamfile
2
3project
4    :
5    requirements
6    :
7    source-location ..
8    ;
9
10exe inspect
11    :
12    inspect.cpp license_check.cpp link_check.cpp long_name_check.cpp tab_check.cpp crlf_check.cpp unnamed_namespace_check.cpp
13    copyright_check.cpp minmax_check.cpp
14    /boost//filesystem/<link>static
15    /boost//regex/<link>static
16    :
17    :
18    release
19    ;
20
21install dist-bin
22    :
23    inspect
24    :
25    <install-type>EXE
26    <location>../../../dist/bin
27    :
28    release
29    ;
30
31install dist-lib
32    :
33    inspect
34    :
35    <install-type>LIB
36    <location>../../../dist/lib
37    :
38    release
39    ;
Note: See TracBrowser for help on using the repository browser.