Jamfile.v2 753 B

123456789101112131415161718192021222324252627
  1. # Boost.PropertyTree
  2. #
  3. # Copyright (c) 2009 Sebastian Redl
  4. #
  5. # Distributed under the Boost Software License, Version 1.0.
  6. # (See accompanying file LICENSE_1_0.txt or copy at
  7. # http://www.boost.org/LICENSE_1_0.txt)
  8. # bring in rules for testing
  9. import testing ;
  10. project
  11. : requirements
  12. <link>static
  13. <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS=1
  14. ;
  15. test-suite "property_tree"
  16. : [ run test_property_tree.cpp /boost/serialization//boost_serialization ]
  17. [ run test_info_parser.cpp ]
  18. [ run test_json_parser.cpp ]
  19. [ run test_json_parser2.cpp /boost/test//boost_unit_test_framework ]
  20. [ run test_ini_parser.cpp ]
  21. [ run test_xml_parser_rapidxml.cpp ]
  22. [ run test_multi_module1.cpp test_multi_module2.cpp ]
  23. ;