Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/wave/build/Jamfile.v2 @ 20

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

added boost

File size: 997 bytes
Line 
1# Boost.Wave: A Standard compliant C++ preprocessor library
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 boost/wave
12    :
13    source-location ../src
14    ;
15
16SOURCES =
17    instantiate_cpp_exprgrammar
18    instantiate_cpp_grammar
19    instantiate_cpp_literalgrs
20    instantiate_defined_grammar
21    instantiate_predef_macros
22    instantiate_re2c_lexer
23    instantiate_re2c_lexer_str
24    cpplexer/re2clex/aq
25    cpplexer/re2clex/cpp_re
26    ;
27
28lib boost_wave
29    :
30    $(SOURCES).cpp
31    /boost/filesystem//boost_filesystem
32    :
33    <toolset>msvc-7.1:<rtti>off      # workaround for compiler bug
34    # Not supported by V2
35    # <no-warn>cpp_re.cpp
36    ;
37
38install dist-lib
39    :
40    boost_wave
41    :
42    <install-type>LIB
43    <location>../../../dist/lib
44    ;
45
46explicit dist-lib ;
Note: See TracBrowser for help on using the repository browser.