2
0
mirror of https://github.com/boostorg/json.git synced 2026-02-12 12:12:15 +00:00
Files
json/test/Jamfile
2019-10-19 12:46:21 -07:00

54 lines
1.1 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 =
_detail_iterator.cpp
_detail_stack.cpp
array.cpp
assign_string.cpp
assign_vector.cpp
basic_parser.cpp
error.cpp
json.cpp
kind.cpp
number.cpp
object.cpp
parser.cpp
serializer.cpp
storage.cpp
string.cpp
value.cpp
;
local RUN_TESTS ;
for local f in $(SOURCES)
{
RUN_TESTS += [ run $(f) main.cpp ] ;
}
alias run-tests : $(RUN_TESTS) ;