boost/libs/property_map/test/Jamfile.v2
2022-12-15 23:45:23 +08: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 ]
;