Jamfile.v2 800 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Copyright 2016-2017 Joaquín M López Muñoz.
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at
  4. # http://www.boost.org/LICENSE_1_0.txt)
  5. #
  6. # See http://www.boost.org/libs/poly_collection for library home page.
  7. project
  8. : requirements
  9. <include>$(BOOST_ROOT)
  10. <cxxstd>11
  11. ;
  12. exe algorithms
  13. : algorithms.cpp
  14. : <cxxstd>14
  15. ;
  16. exe basic_any
  17. : basic_any.cpp
  18. ;
  19. exe basic_base
  20. : basic_base.cpp
  21. ;
  22. exe basic_function
  23. : basic_function.cpp
  24. : <cxxstd>14
  25. ;
  26. exe exceptions
  27. : exceptions.cpp
  28. ;
  29. exe insertion_emplacement
  30. : insertion_emplacement.cpp
  31. ;
  32. exe perf
  33. : perf.cpp
  34. :
  35. : release
  36. ;
  37. exe segmented_structure
  38. : segmented_structure.cpp
  39. : <cxxstd>14
  40. ;