• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
9project libs/format/benchmark
10    : requirements
11	  <toolset>msvc:<define>_CRT_SECURE_NO_WARNINGS
12	;
13
14exe bench_format_no_locale
15    : bench_format.cpp
16    : <define>BOOST_NO_STD_LOCALE <location-prefix>no_locale
17    ;
18
19exe bench_format_normal
20    : bench_format.cpp
21    : <location-prefix>normal
22    ;
23
24exe bench_format_no_reuse_stream
25    : bench_format.cpp
26    : <include>alts <define>BOOST_FORMAT_NO_OSS_MEMBER <location-prefix>no_reuse_stream
27    ;
28