]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/convert/test/jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / convert / test / jamfile.v2
1 # Convert Jamfile
2 # Copyright (c) Vladimir Batov 2009-2014
3 # Distributed under the Boost Software License, Version 1.0.
4 # See copy at http://www.boost.org/LICENSE_1_0.txt.
5
6 # bring in the rules for testing
7 import testing ;
8
9 project convert_test
10 : requirements
11 <warnings>on
12 <toolset>icpc:<cxxflags>"-std=c++11"
13 <toolset>clang:<cxxflags>"-std=c++11"
14 <toolset>gcc:<warnings>all
15 <toolset>gcc:<cxxflags>"-O3 -std=c++0x -Wno-unused-variable -Wno-unused-local-typedefs -Wno-long-long"
16 <toolset>msvc:<warnings>all
17 <toolset>msvc:<cxxflags>"/wd4996 /wd4512 /wd4610 /wd4510 /wd4127 /wd4701 /wd4127 /wd4305 /wd4244 /wd4714 /wd4189"
18 <toolset>msvc:<asynch-exceptions>on
19 <toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE
20 <toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE
21 <toolset>msvc:<define>_SCL_SECURE_NO_WARNINGS
22 <toolset>msvc:<define>_CRT_SECURE_NO_WARNINGS
23 <include>../include
24 ;
25
26 exe convert_test_performance : performance.cpp /boost/timer//boost_timer ;
27 exe convert_test_performance_spirit : performance_spirit.cpp ;
28
29 run callable.cpp : : : : convert_test_callable ;
30 run fallbacks.cpp : : : : convert_test_fallbacks ;
31 run spirit_converter.cpp : : : : convert_test_spirit_converter ;
32 run stream_converter.cpp : : : : convert_test_stream_converter ;
33 run printf_converter.cpp : : : : convert_test_printf_converter ;
34 run strtol_converter.cpp : : : : convert_test_strtol_converter ;
35 run lcast_converter.cpp : : : : convert_test_lcast_converter ;
36 run encryption.cpp : : : : convert_test_encryption ;
37 run user_type.cpp : : : : convert_test_user_type ;
38 run str_to_int.cpp : : : : convert_test_str_to_int ;
39 run sfinae.cpp : : : : convert_test_sfinae ;
40 run has_member.cpp : : : : convert_test_has_member ;
41