]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/algorithm/example/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / algorithm / example / Jamfile.v2
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
11 project /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
21 exe clamp_example : clamp_example.cpp ;
22 exe search_example : search_example.cpp ;
23 exe is_palindrome_example : is_palindrome_example.cpp;
24 exe is_partitioned_until_example : is_partitioned_until_example.cpp;
25