]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/coroutine/test/Jamfile.v2
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / coroutine / test / Jamfile.v2
1 # Boost.Coroutine Library Tests Jamfile
2
3 # Copyright Oliver Kowalke 2009.
4 # Distributed under the Boost Software License, Version 1.0.
5 # (See accompanying file LICENSE_1_0.txt or copy at
6 # http://www.boost.org/LICENSE_1_0.txt)
7
8 import common ;
9 import feature ;
10 import indirect ;
11 import modules ;
12 import os ;
13 import testing ;
14 import toolset ;
15
16 project boost/coroutine/test
17 : requirements
18 <library>/boost/context//boost_context
19 <library>/boost/coroutine//boost_coroutine
20 <library>/boost/program_options//boost_program_options
21 <library>/boost/test///boost_unit_test_framework
22 <target-os>linux,<toolset>gcc,<segmented-stacks>on:<cxxflags>-fsplit-stack
23 <target-os>linux,<toolset>gcc,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
24 <toolset>clang,<segmented-stacks>on:<cxxflags>-fsplit-stack
25 <toolset>clang,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
26 <link>static
27 <threading>multi
28 ;
29
30 test-suite "coroutine" :
31 [ run test_asymmetric_coroutine.cpp ]
32 [ run test_symmetric_coroutine.cpp ]
33 ;