# libs/integer/example Jamfile # Copyright (c) Vladimir Batov 2009-2014 # Copyright Paul A. Bristow 2015 # Distributed under the Boost Software License, Version 1.0. # See copy at http://www.boost.org/LICENSE_1_0.txt. # bring in the rules for testing import testing ; project convert_examples : requirements on gcc:all msvc:all gcc:"-Wno-unused-local-typedefs -Wno-unused-variable -Wno-long-long" msvc:"/wd4996 /wd4512 /wd4610 /wd4510 /wd4127 /wd4701 /wd4127 /wd4305 /wd4100 /wd4512 /wd4714" msvc:on msvc:_CRT_SECURE_NO_DEPRECATE msvc:_SCL_SECURE_NO_DEPRECATE msvc:_SCL_SECURE_NO_WARNINGS msvc:_CRT_SECURE_NO_WARNINGS ../include ; run integer_mask_example.cpp ; run integer_traits_example.cpp ; run integer_type_selection_example.cpp ;