2
0
mirror of https://github.com/boostorg/json.git synced 2026-01-24 18:02:22 +00:00
Files
json/fuzzing/Jamfile
Dmitry Arkhipov dd7c77ded6 GCC 4.8 is supported
close #497
2021-02-09 10:12:06 -08:00

35 lines
707 B
Plaintext

#
# Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.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/boostorg/json
#
import os ;
STANDALONE = [ os.environ STANDALONE ] ;
if $(STANDALONE)
{
LIB =
<define>BOOST_JSON_STANDALONE=1
<source>../src/src.cpp
;
}
else
{
LIB = <library>/boost/json//boost_json ;
}
project : requirements $(c11-requires) ;
# See the comments in CMakeLists.txt for why
# these are libraries and not exe targets.
lib fuzzerlib_basic_parser :
fuzz_basic_parser.cpp
: :
$(LIB)
;