]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/format/benchmark/Jamfile
bump version to 18.2.2-pve1
[ceph.git] / ceph / src / boost / libs / format / benchmark / Jamfile
1 # Boost.Format Library benchmark Jamfile
2 #
3 # Copyright (c) 2003 Samuel Krempp
4 #
5 # Distributed under the Boost Software License, Version 1.0.
6 # See www.boost.org/LICENSE_1_0.txt
7 #
8
9 project libs/format/benchmark
10 : requirements
11 <toolset>msvc:<define>_CRT_SECURE_NO_WARNINGS
12 ;
13
14 exe bench_format_no_locale
15 : bench_format.cpp
16 : <define>BOOST_NO_STD_LOCALE <location-prefix>no_locale
17 ;
18
19 exe bench_format_normal
20 : bench_format.cpp
21 : <location-prefix>normal
22 ;
23
24 exe bench_format_no_reuse_stream
25 : bench_format.cpp
26 : <include>alts <define>BOOST_FORMAT_NO_OSS_MEMBER <location-prefix>no_reuse_stream
27 ;