mirror of
https://github.com/boostorg/json.git
synced 2026-02-10 23:42:19 +00:00
53 lines
920 B
Plaintext
53 lines
920 B
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
|
|
#
|
|
|
|
local SOURCES =
|
|
_detail_stack.cpp
|
|
allocator.cpp
|
|
array.cpp
|
|
assign_string.cpp
|
|
assign_vector.cpp
|
|
basic_parser.cpp
|
|
error.cpp
|
|
iterator.cpp
|
|
json.cpp
|
|
kind.cpp
|
|
number.cpp
|
|
object.cpp
|
|
parse_file.cpp
|
|
parser.cpp
|
|
serializer.cpp
|
|
storage.cpp
|
|
string.cpp
|
|
value.cpp
|
|
;
|
|
|
|
local RUN_TESTS ;
|
|
|
|
for local f in $(SOURCES)
|
|
{
|
|
RUN_TESTS += [ run $(f) lib.cpp main.cpp ] ;
|
|
}
|
|
|
|
alias run-tests : $(RUN_TESTS) ;
|
|
|
|
exe fat-tests :
|
|
$(SOURCES)
|
|
lib.cpp
|
|
main.cpp
|
|
;
|
|
|
|
explicit fat-tests ;
|
|
|
|
run $(SOURCES)
|
|
lib.cpp
|
|
: : : : run-fat-tests ;
|
|
|
|
explicit run-fat-tests ;
|