1#
2# Copyright (c) 2019 Vinnie Falco (vinnie dot falco at gmail dot com)
3#
4# Distributed under the Boost Software License, Version 1.0. (See accompanying
5# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6#
7# Official repository: https://github.com/boostorg/json
8#
9
10import ../config/checks/config : requires ;
11
12# These make sure we only build on
13# compatible C++11 or later toolchains.
14constant c11-requires :
15    [ requires
16    cxx11_alignas
17    cxx11_constexpr
18    cxx11_decltype
19    cxx11_hdr_tuple
20    cxx11_template_aliases
21    cxx11_variadic_templates
22    ]
23    ;
24
25path-constant LIB_DIR : . ;
26
27build-project bench ;
28build-project test ;
29build-project fuzzing ;
30build-project example ;
31