mirror of
https://github.com/boostorg/charconv.git
synced 2026-01-22 17:12:13 +00:00
30 lines
782 B
Plaintext
30 lines
782 B
Plaintext
# Copyright 2022 Peter Dimov
|
|
# Copyright 2023 Matt Borland
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# https://www.boost.org/LICENSE_1_0.txt
|
|
|
|
import testing ;
|
|
import ../../config/checks/config : requires ;
|
|
|
|
project : requirements
|
|
|
|
<library>/boost/charconv//boost_charconv
|
|
|
|
<warnings>extra
|
|
|
|
<toolset>msvc:<warnings-as-errors>on
|
|
<toolset>clang:<warnings-as-errors>on
|
|
<toolset>gcc:<warnings-as-errors>on ;
|
|
|
|
run quick.cpp ;
|
|
|
|
run from_chars.cpp ;
|
|
run to_chars.cpp ;
|
|
run roundtrip.cpp ;
|
|
run from_chars_STL_comp.cpp : : : [ requires cxx17_hdr_charconv ] ;
|
|
run to_chars_integer_STL_comp.cpp : : : [ requires cxx17_hdr_charconv ] ;
|
|
run limits.cpp ;
|
|
run to_chars_sprintf.cpp ;
|
|
run test_num_digits.cpp ;
|
|
run limits_link_1.cpp limits_link_2.cpp limits_link_3.cpp ;
|