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 10 11project /boost/algorithm/example 12 : requirements 13 <include>../../../ 14 <optimization>speed 15 <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS 16 <toolset>msvc:<define>NOMINMAX 17 <link>static 18 : 19 ; 20 21exe clamp_example : clamp_example.cpp : ; 22exe search_example : search_example.cpp ; 23exe is_palindrome_example : is_palindrome_example.cpp : <cxxstd>11 ; 24exe is_partitioned_until_example : is_partitioned_until_example.cpp : <cxxstd>11 ; 25exe apply_permutation_example : apply_permutation_example.cpp : <cxxstd>11 ; 26