property_map/test/Jamfile.v2
James E. King III 7244ad725b Added CI framework
- travis with valgrind, cppcheck, ubsan, codecov, covscan (future)
  - appveyor with MSVC 2010 through 2017, cygwin 32/64, mingw 32/64
  - README, LICENSE, etc.
2018-05-27 09:37:47 -04:00

27 lines
695 B
Plaintext

# PropertyMap library
# Copyright (C) 2005 Trustees of Indiana University
#
# Author: Douglas Gregor
#
# Use, modification and distribution is subject to 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)
# For more information, see http://www.boost.org/
import os ;
project
: requirements
<target-os>cygwin:<define>_POSIX_C_SOURCE=201112L
;
test-suite property_map
: [ compile property_map_cc.cpp ]
[ run compose_property_map_test.cpp ]
[ run dynamic_properties_test.cpp ]
[ run function_property_map_test.cpp ]
[ run transform_value_property_map_test.cpp ]
;