Jamfile.v2 904 B

12345678910111213141516171819202122232425
  1. # Boost algorithm library example programs Jamfile
  2. #
  3. # Copyright Marshall Clow 2010-2012. Use, modification and
  4. # distribution is subject to the Boost Software License, Version
  5. # 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. # http://www.boost.org/LICENSE_1_0.txt)
  7. #
  8. # See http://www.boost.org for updates, documentation, and revision history.
  9. project /boost/algorithm/example
  10. : requirements
  11. <include>../../../
  12. <optimization>speed
  13. <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS
  14. <toolset>msvc:<define>NOMINMAX
  15. <link>static
  16. :
  17. ;
  18. exe clamp_example : clamp_example.cpp : ;
  19. exe search_example : search_example.cpp ;
  20. exe is_palindrome_example : is_palindrome_example.cpp : <cxxstd>11 ;
  21. exe is_partitioned_until_example : is_partitioned_until_example.cpp : <cxxstd>11 ;
  22. exe apply_permutation_example : apply_permutation_example.cpp : <cxxstd>11 ;