aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/statemachine/statemachine.pro
blob: b17ec6140dd05db7aa49a8eb714ee00e157659c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
CXX_MODULE = qml
TARGET = qtqmlstatemachine
TARGETPATH = QtQml/StateMachine
IMPORT_VERSION = 1.15

QT = core-private qml-private

SOURCES = \
    $$PWD/finalstate.cpp \
    $$PWD/signaltransition.cpp \
    $$PWD/state.cpp \
    $$PWD/statemachine.cpp \
    $$PWD/timeouttransition.cpp \
    $$PWD/plugin.cpp

HEADERS = \
    $$PWD/childrenprivate.h \
    $$PWD/finalstate.h  \
    $$PWD/signaltransition.h  \
    $$PWD/state.h  \
    $$PWD/statemachine.h  \
    $$PWD/timeouttransition.h \
    $$PWD/statemachineforeign.h

CONFIG += qmltypes install_qmltypes

load(qml_plugin)