Jamfile 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # Copyright (c) 2018 Mateusz Loskot <mateusz@loskot.net>
  2. # Copyright (c) 2019 Hans Dembinski
  3. #
  4. # Use, modification and distribution is subject to the Boost Software License,
  5. # Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. # http://www.boost.org/LICENSE_1_0.txt)
  7. import testing ;
  8. import ../../config/checks/config : requires ;
  9. project
  10. : requirements
  11. [ requires
  12. cxx14_constexpr cxx14_decltype_auto cxx14_generic_lambdas cxx14_return_type_deduction cxx11_user_defined_literals
  13. # list could go on...
  14. ]
  15. ;
  16. alias cxx14 :
  17. [ run getting_started_listing_01.cpp ]
  18. [ run getting_started_listing_02.cpp ]
  19. [ run getting_started_listing_03.cpp ]
  20. [ run getting_started_listing_04.cpp ]
  21. [ run guide_axis_basic_demo.cpp ]
  22. [ run guide_axis_circular.cpp ]
  23. [ run guide_axis_growing.cpp ]
  24. [ run guide_axis_with_labels.cpp ]
  25. [ run guide_axis_with_transform.cpp ]
  26. [ run guide_axis_with_uoflow_off.cpp ]
  27. [ run guide_custom_2d_axis.cpp ]
  28. [ run guide_custom_accumulators_1.cpp ]
  29. [ run guide_custom_accumulators_2.cpp ]
  30. [ run guide_custom_accumulators_3.cpp ]
  31. [ run guide_custom_minimal_axis.cpp ]
  32. [ run guide_custom_modified_axis.cpp ]
  33. [ run guide_custom_storage.cpp ]
  34. [ run guide_fill_histogram.cpp ]
  35. [ run guide_fill_profile.cpp ]
  36. [ run guide_fill_weighted_histogram.cpp ]
  37. [ run guide_fill_weighted_profile.cpp ]
  38. [ run guide_histogram_operators.cpp ]
  39. [ run guide_histogram_reduction.cpp ]
  40. [ run guide_histogram_projection.cpp ]
  41. [ run guide_histogram_streaming.cpp ]
  42. [ run guide_indexed_access.cpp ]
  43. [ run guide_make_dynamic_histogram.cpp ]
  44. [ run guide_make_static_histogram.cpp ]
  45. [ run guide_stdlib_algorithms.cpp ]
  46. ;
  47. alias threading :
  48. [ run guide_parallel_filling.cpp ] :
  49. <threading>multi
  50. ;
  51. alias libserial : /boost/serialization//boost_serialization : <link>static ;
  52. alias serial :
  53. [ run guide_histogram_serialization.cpp libserial ]
  54. ;
  55. alias all : cxx14 threading serial ;
  56. explicit cxx14 ;
  57. explicit threading ;
  58. explicit libserial ;
  59. explicit serial ;