Jamfile.v2 440 B

12345678910111213141516
  1. # Boost.PropertyMap Library example Jamfile
  2. #
  3. # Copyright (c) 2018 James E. King III
  4. #
  5. # Distributed under the Boost Software License, Version 1.0. (See accompany-
  6. # ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. import testing ;
  8. test-suite "property_map-examples"
  9. : [ run compose_property_map_example.cpp ]
  10. [ run example1.cpp ]
  11. [ run example2.cpp ]
  12. [ run example3.cpp ]
  13. ;