2
0
mirror of https://github.com/boostorg/json.git synced 2026-02-12 12:12:15 +00:00
Files
json/test/Jamfile
Vinnie Falco b4d46f6c68 Tidy up ryu
2019-11-01 06:42:01 -07:00

57 lines
1.2 KiB
Plaintext

#
# Copyright (c) 2013-2019 Vinnie Falco (vinnie dot falco at gmail dot 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/json
#
import testing ;
import ../../config/checks/config : requires ;
project
: requirements
<library>/boost/json//boost_json
[ requires
cxx11_constexpr
cxx11_decltype
cxx11_hdr_tuple
cxx11_template_aliases
cxx11_variadic_templates
]
<toolset>msvc-14.1:<cxxflags>"/permissive-"
<toolset>msvc-14.2:<cxxflags>"/permissive-"
<target-os>windows:<define>_WIN32_WINNT=0x0601
;
local SOURCES =
array.cpp
assign_string.cpp
assign_vector.cpp
basic_parser.cpp
block_storage.cpp
error.cpp
json.cpp
kind.cpp
number.cpp
object.cpp
parser.cpp
serializer.cpp
storage.cpp
storage_ptr.cpp
string.cpp
value.cpp
ryu/d2s_intrinsics_test.cpp
ryu/d2s_table_test.cpp
ryu/d2s_test.cpp
;
local RUN_TESTS ;
for local f in $(SOURCES)
{
RUN_TESTS += [ run $(f) main.cpp ] ;
}
alias run-tests : $(RUN_TESTS) ;