-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJamfile.v2
More file actions
67 lines (50 loc) · 1.44 KB
/
Jamfile.v2
File metadata and controls
67 lines (50 loc) · 1.44 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Boost algorithm library test suite Jamfile ----------------------------
#
# Copyright Marshall Clow 2010-2012. Use, modification and
# distribution is subject to 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)
#
# See http://www.boost.org for updates, documentation, and revision history.
import os ;
local BOOST_ROOT = [ os.environ BOOST_ROOT ] ;
project /boost/algorithm/test
: requirements
<source>/boost//unit_test_framework
<include>../../../
<include>$(BOOST_ROOT)
<optimization>speed
<toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS
<toolset>msvc:<define>NOMINMAX
<link>static
:
;
run all_test.cpp ;
run all_of_test.cpp ;
run any_of_test.cpp ;
run none_of_test.cpp ;
run one_of_test.cpp ;
run clamp_test.cpp ;
run ordered_test.cpp ;
run copy_n_test1.cpp ;
run is_permutation_test1.cpp ;
run empty_search_test.cpp ;
run search_test1.cpp ;
run search_test2.cpp ;
run search_test3.cpp ;
compile-fail search_fail1.cpp ;
compile-fail search_fail2.cpp ;
compile-fail search_fail3.cpp ;
run hex_test1.cpp ;
run hex_test2.cpp ;
run hex_test3.cpp ;
compile-fail hex_fail1.cpp ;
run iota_test1.cpp ;
run minmax_test1.cpp ;
run minmax_test2.cpp ;
run move_test1.cpp ;
run partition_point_test1.cpp ;
run is_partitioned_test1.cpp ;
run partition_copy_test1.cpp ;
run find_if_not_test1.cpp ;
run is_palindrome_test.cpp ;