2
0
mirror of https://github.com/boostorg/url.git synced 2026-01-24 18:32:37 +00:00
Files
url/example/router/Jamfile
2024-08-20 19:41:20 -03:00

22 lines
726 B
Plaintext

#
# Copyright (c) 2023 Alan de Freitas (alandefreitas@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/boostorg/url
#
project
: requirements
<toolset>clang-4:<warnings-as-errors>off
<toolset>clang-5:<warnings-as-errors>off
<define>BOOST_ASIO_DISABLE_FENCED_BLOCK
<library>/boost/url//boost_url
<library>/boost/beast//boost_beast/<link>static
<library>/boost/beast//boost_beast_asio/<link>static
<toolset>gcc-7:<cxxflags>"-Wno-maybe-uninitialized"
;
exe router : router.cpp impl/matches.cpp detail/impl/router.cpp ;