]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/algorithm/example/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / algorithm / example / Jamfile.v2
CommitLineData
7c673cae
FG
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;
b32b8144 24exe is_partitioned_until_example : is_partitioned_until_example.cpp;
7c673cae 25