Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/tools/wave/build/Jamfile.v2 @ 12

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

added boost

File size: 889 bytes
Line 
1# Wave: A Standard compliant C++ preprocessor
2#
3# Boost Wave Library Build Jamfile
4#
5# http://www.boost.org/
6#
7# Copyright (c) 2001-2005 Hartmut Kaiser. Distributed under the Boost
8# Software License, Version 1.0. (See accompanying file
9# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
10
11project
12    :
13    requirements
14#    <link>static
15#    <runtime-link>static
16#    <threading>single
17    ;
18
19exe wave
20    :
21    ../cpp.cpp
22    /boost/wave//boost_wave
23    /boost/program_options//boost_program_options
24    /boost/filesystem//boost_filesystem
25    :
26    <toolset>msvc-7.1:<rtti>off     # workaround for compiler bug
27    :
28    release
29    ;
30
31install dist-bin
32    :
33    wave
34    :
35    <install-type>EXE
36    <location>../../../dist/bin
37    :
38    release
39    ;
40
41install dist-lib
42    :
43    wave
44    :
45    <install-type>LIB
46    <location>../../../dist/lib
47    :
48    release
49    ;
Note: See TracBrowser for help on using the repository browser.