mirror of
https://github.com/boostorg/url.git
synced 2026-02-15 01:22:11 +00:00
94 lines
2.0 KiB
Plaintext
94 lines
2.0 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/CPPAlliance/url
|
|
#
|
|
|
|
import testing ;
|
|
|
|
|
|
project
|
|
: requirements
|
|
$(c11-requires)
|
|
<source>../../extra/test_main.cpp
|
|
<include>.
|
|
<include>../../extra/include
|
|
;
|
|
|
|
|
|
local SOURCES =
|
|
../../extra/test_main.cpp
|
|
authority_view.cpp
|
|
error.cpp
|
|
error_code.cpp
|
|
grammar.cpp
|
|
host_type.cpp
|
|
ipv4_address.cpp
|
|
ipv6_address.cpp
|
|
params.cpp
|
|
params_encoded.cpp
|
|
params_encoded_view.cpp
|
|
params_view.cpp
|
|
pct_encoding.cpp
|
|
pct_encoding_types.cpp
|
|
query_param.cpp
|
|
scheme.cpp
|
|
segments.cpp
|
|
segments_encoded.cpp
|
|
segments_encoded_view.cpp
|
|
segments_view.cpp
|
|
snippets.cpp
|
|
static_pool.cpp
|
|
static_url.cpp
|
|
const_string.cpp
|
|
string_view.cpp
|
|
url.cpp
|
|
url_view.cpp
|
|
urls.cpp
|
|
grammar/ascii.cpp
|
|
grammar/char_literal.cpp
|
|
grammar/charset.cpp
|
|
grammar/elements.cpp
|
|
grammar/error.cpp
|
|
grammar/lut_chars.cpp
|
|
grammar/optional.cpp
|
|
grammar/parse.cpp
|
|
grammar/parse_tag.cpp
|
|
grammar/range.cpp
|
|
grammar/token.cpp
|
|
grammar/unsigned_decimal.cpp
|
|
rfc/absolute_uri_rule.cpp
|
|
rfc/authority_rule.cpp
|
|
rfc/charsets.cpp
|
|
rfc/fragment_rule.cpp
|
|
rfc/hier_part_rule.cpp
|
|
rfc/host_rule.cpp
|
|
rfc/ip_literal_rule.cpp
|
|
rfc/ipv_future_rule.cpp
|
|
rfc/paths_rule.cpp
|
|
rfc/pct_encoded_rule.cpp
|
|
rfc/port_rule.cpp
|
|
rfc/query_rule.cpp
|
|
rfc/reg_name_rule.cpp
|
|
rfc/relative_part_rule.cpp
|
|
rfc/relative_ref_rule.cpp
|
|
rfc/scheme_rule.cpp
|
|
rfc/uri_rule.cpp
|
|
rfc/uri_reference_rule.cpp
|
|
rfc/userinfo_rule.cpp
|
|
;
|
|
for local f in $(SOURCES)
|
|
{
|
|
run $(f) /boost/url//boost_url ;
|
|
}
|
|
|
|
local LIMIT_SOURCES =
|
|
;
|
|
for local f in $(LIMIT_SOURCES)
|
|
{
|
|
run $(f) ../../extra/test_main.cpp /boost/url//url_sources ;
|
|
}
|