2
0
mirror of https://github.com/boostorg/url.git synced 2026-02-14 13:12:15 +00:00
Files
url/test/Jamfile
2021-09-11 15:03:18 -07:00

73 lines
1.4 KiB
Plaintext

#
# 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/vinniefalco/url
#
import testing ;
project
: requirements
$(c11-requires)
<source>include/main.cpp
<include>include
;
local SOURCES =
include/main.cpp
include/test_suite.hpp
include/test_bnf.hpp
error.cpp
host_type.cpp
ipv4_address.cpp
ipv6_address.cpp
path_view.cpp
pct_encoding.cpp
query_params_view.cpp
scheme.cpp
static_pool.cpp
static_url.cpp
string.cpp
url.cpp
url_view.cpp
urls.cpp
bnf/char_set.cpp
bnf/parse.cpp
bnf/range.cpp
bnf/repeat.cpp
bnf/token.cpp
rfc/absolute_uri_bnf.cpp
rfc/authority_bnf.cpp
rfc/char_sets.cpp
rfc/fragment_bnf.cpp
rfc/hier_part_bnf.cpp
rfc/host_bnf.cpp
rfc/ip_literal_bnf.cpp
rfc/ipv_future_bnf.cpp
rfc/ipv4_address_bnf.cpp
rfc/ipv6_address_bnf.cpp
rfc/pct_encoded_bnf.cpp
rfc/port_bnf.cpp
rfc/query_bnf.cpp
rfc/relative_part_bnf.cpp
rfc/scheme_bnf.cpp
rfc/uri_bnf.cpp
rfc/userinfo_bnf.cpp
;
for local f in $(SOURCES)
{
run $(f) /boost/url//boost_url ;
}
local LIMIT_SOURCES =
;
for local f in $(LIMIT_SOURCES)
{
run $(f) include/main.cpp /boost/url//url_sources ;
}