mirror of
https://github.com/boostorg/property_tree.git
synced 2026-02-18 02:12:11 +00:00
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
# Boost.PropertyTree
|
|
#
|
|
# Copyright (c) 2009 Sebastian Redl
|
|
#
|
|
# 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)
|
|
|
|
# bring in rules for testing
|
|
import testing ;
|
|
|
|
project
|
|
: requirements
|
|
|
|
<link>static
|
|
<toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS=1
|
|
|
|
<warnings>extra
|
|
<toolset>msvc:<warnings-as-errors>on
|
|
<toolset>clang:<warnings-as-errors>on
|
|
<toolset>gcc:<warnings-as-errors>on
|
|
;
|
|
|
|
run test_property_tree.cpp /boost/serialization//boost_serialization/<warnings>off ;
|
|
run test_rapidxml.cpp ;
|
|
run test_info_parser.cpp ;
|
|
run test_json_parser.cpp ;
|
|
run test_json_parser2.cpp ;
|
|
compile test_json_parser3.cpp ;
|
|
run test_ini_parser.cpp ;
|
|
run test_xml_parser_rapidxml.cpp ;
|
|
|
|
run test_multi_module1.cpp test_multi_module2.cpp ;
|
|
|
|
compile ../examples/custom_data_type.cpp ;
|
|
compile ../examples/debug_settings.cpp ;
|
|
compile ../examples/empty_ptree_trick.cpp ;
|
|
compile ../examples/info_grammar_spirit.cpp ;
|
|
compile ../examples/speed_test.cpp ;
|