2
0
mirror of https://github.com/boostorg/wave.git synced 2026-02-01 09:02:12 +00:00
Files
wave/samples/quick_start/build/Jamfile
2005-03-30 15:32:57 +00:00

25 lines
702 B
Plaintext

# Boost.Wave: A Standard compliant C++ preprocessor library
#
# Boost Wave Library Sample Build Jamfile (quick_start)
#
# http://www.boost.org/
#
# Copyright (c) 2001-2005 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)
<vc-7_1><*><rtti>off # workaround for compiler bug
:
<runtime-link>static
<threading>single
;