mirror of
https://github.com/boostorg/url.git
synced 2026-01-24 06:22:14 +00:00
100 lines
2.2 KiB
Plaintext
100 lines
2.2 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)
|
|
<library>/boost/filesystem//boost_filesystem
|
|
<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
|
|
optional.cpp
|
|
params.cpp
|
|
params_encoded.cpp
|
|
params_encoded_view.cpp
|
|
params_view.cpp
|
|
pct_encoded_view.cpp
|
|
pct_encoding.cpp
|
|
query_param.cpp
|
|
recycled_ptr.cpp
|
|
result.cpp
|
|
scheme.cpp
|
|
segments.cpp
|
|
segments_encoded.cpp
|
|
segments_encoded_view.cpp
|
|
segments_view.cpp
|
|
snippets.cpp
|
|
static_pool.cpp
|
|
static_url.cpp
|
|
string_view.cpp
|
|
url.cpp
|
|
url_view.cpp
|
|
urls.cpp
|
|
variant.cpp
|
|
grammar/alnum_chars.cpp
|
|
grammar/alpha_chars.cpp
|
|
grammar/charset.cpp
|
|
grammar/ci_string.cpp
|
|
grammar/dec_octet_rule.cpp
|
|
grammar/delim_rule.cpp
|
|
grammar/digit_chars.cpp
|
|
grammar/error.cpp
|
|
grammar/hexdig_chars.cpp
|
|
grammar/lut_chars.cpp
|
|
grammar/not_empty_rule.cpp
|
|
grammar/optional_rule.cpp
|
|
grammar/parse.cpp
|
|
grammar/range_rule.cpp
|
|
grammar/sequence_rule.cpp
|
|
grammar/token_rule.cpp
|
|
grammar/type_traits.cpp
|
|
grammar/unsigned_rule.cpp
|
|
grammar/variant_rule.cpp
|
|
rfc/absolute_uri_rule.cpp
|
|
rfc/authority_rule.cpp
|
|
rfc/gen_delim_chars.cpp
|
|
rfc/ipv4_address_rule.cpp
|
|
rfc/ipv6_address_rule.cpp
|
|
rfc/origin_form_rule.cpp
|
|
rfc/pchars.cpp
|
|
rfc/pct_encoded_rule.cpp
|
|
rfc/query_rule.cpp
|
|
rfc/relative_ref_rule.cpp
|
|
rfc/reserved_chars.cpp
|
|
rfc/sub_delim_chars.cpp
|
|
rfc/unreserved_chars.cpp
|
|
rfc/uri_rule.cpp
|
|
rfc/uri_reference_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 ;
|
|
} |