Jamfile.v2 695 B

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