2
0
mirror of https://github.com/boostorg/msm.git synced 2026-02-18 14:12:31 +00:00
Files
msm/test/Jamfile.v2
Christophe Henry cac3dcd488 increased max template depth
[SVN r62583]
2010-06-08 15:34:11 +00:00

40 lines
1.1 KiB
Plaintext

# test/Jamfile.v2 controls building of MSM Library unit tests
#
# Copyright (c) 2010 Christophe Henry
#
# Use, modification and distribution is subject to 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 ;
project msm
:
requirements
<include>.
<toolset>gcc:<cxxflags>-ftemplate-depth-300
<toolset>darwin:<cxxflags>-ftemplate-depth-300
<library>/boost/test//boost_unit_test_framework/<link>static
;
test-suite msm-unit-tests
:
[ run Anonymous.cpp ]
[ run AnonymousEuml.cpp ]
[ run CompositeEuml.cpp ]
[ run CompositeMachine.cpp ]
[ run Constructor.cpp ]
[ run History.cpp ]
[ run OrthogonalDeferred.cpp ]
[ run OrthogonalDeferred2.cpp ]
[ run OrthogonalDeferredEuml.cpp ]
[ run SimpleEuml.cpp ]
[ run SimpleEuml2.cpp ]
[ run SimpleInternal.cpp ]
[ run SimpleInternalEuml.cpp ]
[ run SimpleInternalFunctors.cpp ]
[ run SimpleMachine.cpp ]
[ run SimpleWithFunctors.cpp ]
;