forked from cppalliance/http
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJamfile
More file actions
61 lines (55 loc) · 1.62 KB
/
Jamfile
File metadata and controls
61 lines (55 loc) · 1.62 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
#
# Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
#
# 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)
#
# Official repository: https://github.com/CPPAlliance/http
#
import testing ;
import ac ;
using zlib ;
lib test_helpers_lib
: test_helpers.cpp
../../../url/extra/test_suite/test_main.cpp
../../../url/extra/test_suite/test_suite.cpp
: requirements
<library>/boost/http//boost_http
<library>/boost/url//boost_url
<include>.
<include>../..
<include>../../../url/extra/test_suite
<link>static
: usage-requirements
<include>.
<include>../..
<include>../../../url/extra/test_suite
;
project
: requirements
$(c11-requires)
<library>/boost/http//boost_http
<library>/boost/url//boost_url
[ ac.check-library /boost/http//boost_http_zlib : <library>/boost/http//boost_http_zlib : ]
[ ac.check-library /boost/http//boost_http_brotli : <library>/boost/http//boost_http_brotli : ]
<library>test_helpers_lib
<include>.
<include>../..
<include>../../../url/extra/test_suite
<warnings>extra
<warnings-as-errors>on
<toolset>gcc:<cxxflags>"-Wno-maybe-uninitialized" # https://github.com/boostorg/url/issues/979
<link>static
;
for local f in [ glob-tree-ex . : *.cpp : file*.cpp test_helpers.cpp ]
{
run $(f) ;
}
for local f in [ glob-tree-ex . : file*.cpp ]
{
run $(f)
: requirements
<library>/boost/filesystem//boost_filesystem
<warnings>off
;
}