• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Boost.Wave: A Standard compliant C++ preprocessor library
2#
3# Boost Wave Library Sample Build Jamfile (real_positions)
4#
5# http://www.boost.org/
6#
7# Copyright (c) 2001-2010 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
11exe real_positions
12    :   ../real_positions.cpp
13        ../instantiate_cpp_exprgrammar.cpp
14        ../instantiate_cpp_grammar.cpp
15        ../instantiate_cpp_literalgrs.cpp
16        ../instantiate_defined_grammar.cpp
17        ../instantiate_has_include_grammar.cpp
18        ../instantiate_re2c_lexer.cpp
19        ../instantiate_re2c_lexer_str.cpp
20        /boost/wave//boost_wave
21        /boost/filesystem//boost_filesystem
22        /boost/system//boost_system
23        /boost/thread//boost_thread
24    ;
25
26