#
# 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 ;
