2
0
mirror of https://github.com/boostorg/wave.git synced 2026-02-26 05:02:18 +00:00
Files
wave/samples/quick_start/build/Jamfile
2004-08-25 11:32:47 +00:00

25 lines
704 B
Plaintext

# Wave: A Standard compliant C++ preprocessor library
#
# Boost Wave Library Sample Build Jamfile (quick_start)
#
# http://spirit.sourceforge.net/
#
# Copyright (c) 2001-2004 Hartmut Kaiser. Distributed under the Boost
# Software License, Version 1.0. (See accompanying file
# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
subproject libs/wave/samples/quick_start/build ;
exe quick_start
: ../quick_start.cpp
<lib>../../../build/boost_wave
<lib>../../../../../libs/filesystem/build/boost_filesystem
:
<sysinclude>$(BOOST_ROOT)
<vc7.1><*><rtti>off # workaround for compiler bug
:
<runtime-link>static
<threading>single
;