Files
statechart/example/Jamfile
Andreas Huber b7cdbeeb73 - Added detailed performance data to the performance document
- Added the InStateVsTransition "example" and the associated InStateVsTransitionCharts.xls
- Removed the to-do item "Investigate how constant-time dispatch for non-orthogonal state machines can be implemented"


[SVN r30727]
2005-08-29 20:22:14 +00:00

92 lines
3.5 KiB
Plaintext

##############################################################################
# (c) Copyright Andreas Huber Doenni 2004-2005
# Distributed under the Boost Software License, Version 1.0. (See accompany-
# ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
##############################################################################
subproject libs/statechart/example ;
local no-of-bits-list = 1 2 3 ;
# Some platforms have either problems with the automatic detection of the
# threading mode (e.g. vc-7_1 & gcc >= 3.4.0) or don't support single-
# threaded mode (e.g. vc-8_0). We therefore manually turn MT off here
local st-requirements = <threading>single <define>BOOST_DISABLE_THREADS ;
local custom = <define>CUSTOMIZE_MEMORY_MANAGEMENT ;
local native = <define>BOOST_STATECHART_USE_NATIVE_RTTI ;
template statechart-common-options
:
: <include>$(BOOST_ROOT)
# The library ensures that all state destructors are only invoked on
# the most-derived type, therefore state destructors do not need to
# be virtual
<gcc><*><cxxflags>-Wno-non-virtual-dtor
<gcc-stlport><*><cxxflags>-Wno-non-virtual-dtor
<gcc-nocygwin><*><cxxflags>-Wno-non-virtual-dtor
<mingw><*><cxxflags>-Wno-non-virtual-dtor
<mingw-stlport><*><cxxflags>-Wno-non-virtual-dtor ;
rule statechart-st-example-build (
name : directory : cpp-sources + : requirements * )
{
exe $(name)
: $(directory)/$(cpp-sources).cpp <template>statechart-common-options
: $(st-requirements) $(requirements) ;
return <exe>$(name) ;
}
rule statechart-mt-example-build (
name : directory : cpp-sources + : requirements * )
{
exe $(name)
: $(directory)/$(cpp-sources).cpp <lib>../../thread/build/boost_thread
<template>statechart-common-options
: <threading>multi $(requirements) ;
return <exe>$(name) ;
}
rule statechart-bitmachine-build ( tag : requirements * )
{
local result ;
for local no-of-bits in $(no-of-bits-list)
{
result +=
[ statechart-st-example-build BitMachine$(tag)$(no-of-bits)
: BitMachine : BitMachine
: <define>NO_OF_BITS=$(no-of-bits) $(requirements) ] ;
}
return $(result) ;
}
stage run
: [ statechart-bitmachine-build Normal ]
[ statechart-bitmachine-build Custom : $(custom) ]
[ statechart-bitmachine-build Native : $(native) ]
[ statechart-st-example-build Camera
: Camera : Camera Configuring Main Shooting ]
[ statechart-st-example-build Handcrafted : Handcrafted : Handcrafted ]
[ statechart-st-example-build KeyboardNormal : Keyboard : Keyboard ]
[ statechart-st-example-build KeyboardNative
: Keyboard : Keyboard : $(native) ]
[ statechart-st-example-build PingPongSingle
: PingPong : PingPong : $(custom) ]
[ statechart-mt-example-build PingPongMulti1
: PingPong : PingPong : $(custom) ]
[ statechart-mt-example-build PingPongMulti2
: PingPong : PingPong : $(custom) <define>USE_TWO_THREADS ]
[ statechart-st-example-build StopWatch : StopWatch : StopWatch ]
[ statechart-st-example-build StopWatch2 : StopWatch : StopWatch2 ]
[ statechart-st-example-build InStateVsTransitionNormal
: InStateVsTransition : InStateVsTransition ]
[ statechart-st-example-build InStateVsTransitionCustom
: InStateVsTransition : InStateVsTransition : $(custom) ]
[ statechart-st-example-build InStateVsTransitionNative
: InStateVsTransition : InStateVsTransition : $(native) ]
: common-variant-tag
<target>stage
<target>all ;