Files
boost_preprocessor/test/Jamfile.v2

262 lines
7.2 KiB
Plaintext
Raw Normal View History

#~ Copyright Rene Rivera 2008
#~ Distributed under the Boost Software License, Version 1.0.
#~ (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
import testing ;
2011-06-26 13:07:20 +00:00
project preprocessor_tests : requirements <warnings>on
<toolset>gcc-4.3.0:<warnings>all
<toolset>gcc-4.3.0:<cxxflags>-Wno-variadic-macros
<toolset>gcc-4.4.0:<warnings>all
<toolset>gcc-4.4.0:<cxxflags>-Wno-variadic-macros
<toolset>gcc-4.5.0:<warnings>all
<toolset>gcc-4.5.0:<cxxflags>-Wno-variadic-macros
<toolset>gcc-4.5.0:<linkflags>"-Wl,--enable-auto-import"
<toolset>gcc-4.5.2:<warnings>all
<toolset>gcc-4.5.2:<cxxflags>-Wno-variadic-macros
<toolset>msvc:<warnings>all
;
alias preprocessor : :
<toolset>gcc
<toolset-gcc:version>3.4
;
alias preprocessor : :
<toolset>gcc
<toolset-gcc:version>4.1
;
alias preprocessor : :
<toolset>gcc
<toolset-gcc:version>4.2
;
alias preprocessor
2011-06-26 13:07:20 +00:00
:
2018-10-25 16:57:55 -04:00
[ compile arithmetic.cpp ]
[ compile array.cpp ]
[ compile comparison.cpp ]
[ compile control.cpp ]
[ compile debug.cpp ]
[ compile facilities.cpp ]
[ compile iteration.cpp ]
[ compile list.cpp ]
[ compile logical.cpp ]
[ compile punctuation.cpp ]
[ compile repetition.cpp ]
[ compile selection.cpp ]
[ compile seq.cpp ]
[ compile slot.cpp ]
[ compile stringize.cpp ]
[ compile tuple.cpp ]
[ compile variadic.cpp ]
2011-06-26 13:07:20 +00:00
;
alias preprocessor_nvm
2011-06-26 13:07:20 +00:00
:
[ compile arithmetic.cpp : <define>BOOST_PP_VARIADICS=0 : arithmetic_nvm ]
[ compile array.cpp : <define>BOOST_PP_VARIADICS=0 : array_nvm ]
[ compile comparison.cpp : <define>BOOST_PP_VARIADICS=0 : comparison_nvm ]
[ compile control.cpp : <define>BOOST_PP_VARIADICS=0 : control_nvm ]
[ compile debug.cpp : <define>BOOST_PP_VARIADICS=0 : debug_nvm ]
[ compile facilities.cpp : <define>BOOST_PP_VARIADICS=0 : facilities_nvm ]
[ compile iteration.cpp : <define>BOOST_PP_VARIADICS=0 : iteration_nvm ]
[ compile list.cpp : <define>BOOST_PP_VARIADICS=0 : list_nvm ]
[ compile logical.cpp : <define>BOOST_PP_VARIADICS=0 : logical_nvm ]
[ compile repetition.cpp : <define>BOOST_PP_VARIADICS=0 : repetition_nvm ]
[ compile selection.cpp : <define>BOOST_PP_VARIADICS=0 : selection_nvm ]
[ compile seq.cpp : <define>BOOST_PP_VARIADICS=0 : seq_nvm ]
[ compile slot.cpp : <define>BOOST_PP_VARIADICS=0 : slot_nvm ]
[ compile stringize.cpp : <define>BOOST_PP_VARIADICS=0 : stringize_nvm ]
2011-06-26 13:07:20 +00:00
[ compile tuple.cpp : <define>BOOST_PP_VARIADICS=0 : tuple_nvm ]
;
alias preprocessor_c
2011-06-26 13:07:20 +00:00
:
[ compile arithmetic.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: arithmetic_c
]
[ compile array.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: array_c
]
[ compile comparison.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: comparison_c
]
[ compile control.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: control_c
]
[ compile debug.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: debug_c
]
[ compile facilities.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: facilities_c
]
[ compile list.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: list_c
]
[ compile logical.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: logical_c
]
[ compile punctuation.c
2018-10-25 16:57:55 -04:00
:
: punctuation_c
]
2011-06-26 13:07:20 +00:00
[ compile selection.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: selection_c
]
[ compile seq.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: seq_c
]
[ compile slot.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: slot_c
]
[ compile stringize.c
2018-10-25 16:57:55 -04:00
:
: stringize_c
]
2011-06-26 13:07:20 +00:00
[ compile tuple.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: tuple_c
]
[ compile variadic.c
2018-10-25 16:57:55 -04:00
:
2011-06-26 13:07:20 +00:00
: variadic_c
]
;
alias preprocessor_c_nvm
2011-06-26 13:07:20 +00:00
:
[ compile arithmetic.c
2018-10-25 16:57:55 -04:00
: <define>BOOST_PP_VARIADICS=0
2011-06-26 13:07:20 +00:00
: arithmetic_c_nvm
]
[ compile array.c
2018-10-25 16:57:55 -04:00
: <define>BOOST_PP_VARIADICS=0
2011-06-26 13:07:20 +00:00
: array_c_nvm
]
[ compile comparison.c
: <define>BOOST_PP_VARIADICS=0
: comparison_c_nvm
]
[ compile control.c
: <define>BOOST_PP_VARIADICS=0
: control_c_nvm
]
[ compile debug.c
: <define>BOOST_PP_VARIADICS=0
: debug_c_nvm
]
[ compile facilities.c
: <define>BOOST_PP_VARIADICS=0
: facilities_c_nvm
]
[ compile list.c
: <define>BOOST_PP_VARIADICS=0
: list_c_nvm
]
[ compile logical.c
: <define>BOOST_PP_VARIADICS=0
: logical_c_nvm
]
[ compile selection.c
: <define>BOOST_PP_VARIADICS=0
: selection_c_nvm
]
[ compile seq.c
: <define>BOOST_PP_VARIADICS=0
: seq_c_nvm
]
[ compile slot.c
: <define>BOOST_PP_VARIADICS=0
: slot_c_nvm
]
[ compile stringize.c
: <define>BOOST_PP_VARIADICS=0
: stringize_c_nvm
]
2011-06-26 13:07:20 +00:00
[ compile tuple.c
: <define>BOOST_PP_VARIADICS=0
: tuple_c_nvm
]
;
alias preprocessor_isempty : :
<toolset>gcc
<toolset-gcc:version>3.4
;
alias preprocessor_isempty : :
<toolset>gcc
<toolset-gcc:version>4.1
;
alias preprocessor_isempty : :
<toolset>gcc
<toolset-gcc:version>4.2
;
alias preprocessor_isempty
2014-04-30 16:15:57 -04:00
:
2018-10-25 16:57:55 -04:00
[ compile isempty.cpp ]
[ compile-fail isempty_variadic_standard_failure.cpp : <define>BOOST_PP_VARIADICS=1 ]
[ compile-fail isempty_variadic_standard_failure2.cpp : <define>BOOST_PP_VARIADICS=1 ]
2014-04-30 16:15:57 -04:00
;
alias preprocessor_isempty_nvm
:
2018-10-25 16:57:55 -04:00
[ compile isempty.cpp : <define>BOOST_PP_VARIADICS=0 : isempty_nvm ]
;
alias preprocessor_isempty_c
2014-04-30 16:15:57 -04:00
:
[ compile isempty.c
2018-10-25 16:57:55 -04:00
:
2014-04-30 16:15:57 -04:00
: isempty_c
]
[ compile-fail isempty_variadic_standard_failure.c
2018-10-25 16:57:55 -04:00
: <define>BOOST_PP_VARIADICS=1
2014-04-30 16:15:57 -04:00
: isempty_variadic_standard_failure_c
]
[ compile-fail isempty_variadic_standard_failure2.c
2018-10-25 16:57:55 -04:00
: <define>BOOST_PP_VARIADICS=1
2014-04-30 16:15:57 -04:00
: isempty_variadic_standard_failure2_c
]
;
alias preprocessor_isempty_c_nvm
:
[ compile isempty.c
: <define>BOOST_PP_VARIADICS=0
: isempty_c_nvm
]
;
2016-11-14 00:25:46 -05:00
alias preprocessor_config
2016-11-14 00:25:46 -05:00
:
[ run config_info.cpp ]
;
alias test_clang_cuda
:
[ compile clang_cuda.cu
: <cxxflags>--cuda-gpu-arch=sm_20
<cxxflags>-nocudalib
<cxxflags>--no-cuda-version-check
: clang_cuda_cu
]
;
explicit test_clang_cuda ;