blob: 43271b48c31a7039ae0fcbc3b0a01bc4d16e459d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#
# 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/test/unit-tests
: requirements
<include>../../src
<warnings>all
<library>/boost//filesystem
<toolset>gcc:<cflags>-g0
<toolset>darwin:<cflags>-g0
<toolset>msvc:<cflags>/wd4709
;
run values_test.cpp ../../src/values.cpp ../../src/files.cpp ;
run post_process_test.cpp ../../src/post_process.cpp ;
run source_map_test.cpp ../../src/files.cpp ;
run glob_test.cpp ../../src/glob.cpp ;
run utils_test.cpp ../../src/id_xml.cpp ../../src/utils.cpp ;
run cleanup_test.cpp ;
run path_test.cpp ../../src/path.cpp ../../src/native_text.cpp ../../src/utils.cpp ;
# Copied from spirit
run symbols_tests.cpp ;
run symbols_find_null.cpp ;
|