Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/wave/samples/waveidl/build/Jamfile @ 12

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

added boost

File size: 1017 bytes
Line 
1# Boost.Wave: A Standard compliant C++ preprocessor library
2#
3# Boost Wave Library Sample Build Jamfile (waveidl)
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
11subproject libs/wave/samples/waveidl/build ;
12
13exe waveidl
14    : ../idl.cpp
15      ../instantiate_cpp_grammar.cpp
16      ../instantiate_defined_grammar.cpp
17      ../instantiate_predef_macros.cpp
18      ../instantiate_re2c_lexer.cpp
19      ../instantiate_re2c_lexer_string.cpp
20      ../idllexer/idl_re.cpp
21      <lib>../../../build/boost_wave
22      <lib>../../../../../libs/program_options/build/boost_program_options
23      <lib>../../../../../libs/filesystem/build/boost_filesystem
24    :
25      <sysinclude>$(BOOST_ROOT)
26      <vc-7_1><*><rtti>off        # workaround for compiler bug
27      <vc-7_1-stlport><*><rtti>off
28    :
29      <runtime-link>static
30      <threading>single
31    ;
32
Note: See TracBrowser for help on using the repository browser.