mirror of
https://github.com/boostorg/url.git
synced 2026-02-01 21:12:10 +00:00
55 lines
2.1 KiB
Plaintext
55 lines
2.1 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/vinniefalco/url
|
|
#
|
|
|
|
project
|
|
: default-build
|
|
|
|
<warnings>extra
|
|
|
|
: requirements
|
|
|
|
<toolset>msvc:<warnings-as-errors>on
|
|
<toolset>gcc:<warnings-as-errors>on
|
|
<toolset>clang:<warnings-as-errors>on
|
|
<toolset>msvc:<cxxflags>"/we4265" # Extra errors that are disabled by default
|
|
<toolset>gcc:<cxxflags>"-Wno-unused-but-set-variable" # Warnings in dependencies
|
|
<toolset>gcc-7:<cxxflags>"-Wno-maybe-uninitialized" # Warnings in dependencies
|
|
<toolset>clang-4:<cxxflags>"-Wno-unused-but-set-variable" # Warnings in dependencies
|
|
<toolset>clang-5:<cxxflags>"-Wno-unused-but-set-variable" # Warnings in dependencies
|
|
<toolset>clang-6:<cxxflags>"-Wno-unused-but-set-variable" # Warnings in dependencies
|
|
<toolset>clang-13:<cxxflags>"-Wno-unused-but-set-variable" # Warnings in dependencies
|
|
<toolset>clang-14:<cxxflags>"-Wno-unused-but-set-variable" # Warnings in dependencies
|
|
<toolset>clang-15:<cxxflags>"-Wno-unused-but-set-variable" # Warnings in dependencies
|
|
<undefined-sanitizer>norecover:<link>static # different typeinfos confuse ubsan
|
|
<undefined-sanitizer>norecover:<visibility>global
|
|
;
|
|
|
|
project
|
|
: default-build
|
|
|
|
<warnings>extra
|
|
|
|
: requirements
|
|
|
|
<toolset>msvc:<warnings-as-errors>on
|
|
<toolset>gcc:<warnings-as-errors>on
|
|
<toolset>clang:<warnings-as-errors>on
|
|
<toolset>gcc:<cxxflags>"-Wno-unused-but-set-variable" # Warnings in dependencies
|
|
<toolset>clang:<cxxflags>"-Wno-unknown-warning-option"
|
|
<toolset>clang-13:<cxxflags>"-Wno-unused-but-set-variable" # Warnings in dependencies
|
|
<toolset>clang-14:<cxxflags>"-Wno-unused-but-set-variable" # Warnings in dependencies
|
|
<toolset>clang-15:<cxxflags>"-Wno-unused-but-set-variable" # Warnings in dependencies
|
|
|
|
;
|
|
|
|
build-project extra ;
|
|
build-project limits ;
|
|
build-project unit ;
|
|
|