1# PropertyMap library 2 3# Copyright (C) 2005 Trustees of Indiana University 4# 5# Author: Douglas Gregor 6# 7# Use, modification and distribution is subject to the Boost Software License, 8# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 9# http://www.boost.org/LICENSE_1_0.txt) 10 11# For more information, see http://www.boost.org/ 12 13import os ; 14 15project 16 : requirements 17 <target-os>cygwin:<define>_POSIX_C_SOURCE=201112L 18 ; 19 20test-suite property_map 21 : [ compile property_map_cc.cpp ] 22 [ run compose_property_map_test.cpp ] 23 [ run dynamic_properties_test.cpp ] 24 [ run function_property_map_test.cpp ] 25 [ run transform_value_property_map_test.cpp ] 26 ; 27