-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jamroot
49 lines (42 loc) · 964 Bytes
/
Jamroot
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
# Boost Build 2 configuration for testing the constant expression table library
#
# Copyright (c) 2013
# Joshua Napoli <[email protected]>
#
# 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)
project table
: requirements
<link>static
<cxxflags>-std=c++11
<debug-symbols>on
: default-build
: build-dir bin
;
import testing ;
alias table
: # sources
: # requirements
: # default-build
: # usage-requirements
<include>include
;
unit-test table_test
: # sources
test/table_test.cpp
table
/boost/test//boost_unit_test_framework
;
unit-test array_cat_test
: # sources
test/array_cat_test.cpp
table
/boost/test//boost_unit_test_framework
;
unit-test array_cat_element_test
: # sources
test/array_cat_element_test.cpp
table
/boost/test//boost_unit_test_framework
;