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 7import testing ; 8 9project 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 26exe convert_test_performance : performance.cpp /boost/timer//boost_timer ; 27exe convert_test_performance_spirit : performance_spirit.cpp ; 28 29run callable.cpp : : : : convert_test_callable ; 30run fallbacks.cpp : : : : convert_test_fallbacks ; 31run spirit_converter.cpp : : : : convert_test_spirit_converter ; 32run stream_converter.cpp : : : : convert_test_stream_converter ; 33run printf_converter.cpp : : : : convert_test_printf_converter ; 34run strtol_converter.cpp : : : : convert_test_strtol_converter ; 35run lcast_converter.cpp : : : : convert_test_lcast_converter ; 36run encryption.cpp : : : : convert_test_encryption ; 37run user_type.cpp : : : : convert_test_user_type ; 38run str_to_int.cpp : : : : convert_test_str_to_int ; 39run sfinae.cpp : : : : convert_test_sfinae ; 40run has_member.cpp : : : : convert_test_has_member ; 41 42