mirror of
https://github.com/boostorg/url.git
synced 2026-01-22 05:42:46 +00:00
89 lines
1.8 KiB
Plaintext
89 lines
1.8 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
|
|
host_type.cpp
|
|
ipv4_address.cpp
|
|
ipv6_address.cpp
|
|
params.cpp
|
|
params_encoded.cpp
|
|
params_encoded_view.cpp
|
|
params_value_type.cpp
|
|
params_view.cpp
|
|
pct_encoding.cpp
|
|
pct_encoding_types.cpp
|
|
scheme.cpp
|
|
segments.cpp
|
|
segments_encoded.cpp
|
|
segments_encoded_view.cpp
|
|
segments_view.cpp
|
|
static_pool.cpp
|
|
static_url.cpp
|
|
string.cpp
|
|
url.cpp
|
|
url_view.cpp
|
|
urls.cpp
|
|
bnf/ascii.cpp
|
|
bnf/charset.cpp
|
|
bnf/parse.cpp
|
|
bnf/range.cpp
|
|
bnf/repeat.cpp
|
|
bnf/token.cpp
|
|
rfc/absolute_uri_bnf.cpp
|
|
rfc/authority_bnf.cpp
|
|
rfc/charsets.cpp
|
|
rfc/fragment_bnf.cpp
|
|
rfc/fragment_part_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/paths_bnf.cpp
|
|
rfc/pct_encoded_bnf.cpp
|
|
rfc/port_bnf.cpp
|
|
rfc/port_part_bnf.cpp
|
|
rfc/query_bnf.cpp
|
|
rfc/query_part_bnf.cpp
|
|
rfc/relative_part_bnf.cpp
|
|
rfc/relative_ref_bnf.cpp
|
|
rfc/scheme_bnf.cpp
|
|
rfc/scheme_part_bnf.cpp
|
|
rfc/uri_bnf.cpp
|
|
rfc/uri_reference_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) ../../extra/test_main.cpp /boost/url//url_sources ;
|
|
}
|