2025-01-12 20:41:24 +08:00

28 lines
803 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 dynamic_properties_test.cpp : : : <define>BOOST_NO_RTTI=1 : dynamic_properties_no_rtti_test ]
[ run function_property_map_test.cpp ]
[ run transform_value_property_map_test.cpp ]
;