Files
quickbook/test/unit/Jamfile.v2
Daniel James 818aeade78 Quickbook: Use container forwarding for gcc/darwin.
It's usually safe. Especially since we're controlling the build.

[SVN r77830]
2012-04-08 15:27:48 +00:00

29 lines
799 B
Plaintext

#
# Copyright (c) 2011 Daniel James
#
# 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)
#
import testing ;
project quickbook-unit-tests
: requirements
<include>../../src
<warnings>all
<library>/boost//filesystem
<toolset>gcc:<cflags>-g0
<toolset>darwin:<cflags>-g0
<toolset>msvc:<cflags>/wd4709
<toolset>gcc:<define>BOOST_DETAIL_CONTAINER_FWD
<toolset>darwin:<define>BOOST_DETAIL_CONTAINER_FWD
;
run values_test.cpp ../../src/values.cpp ../../src/files.cpp ../../src/string_ref.cpp ;
run post_process_test.cpp ../../src/post_process.cpp ;
# Copied from spirit
run symbols_tests.cpp ;
run symbols_find_null.cpp ;