1QT += widgets scxml
2
3CONFIG += c++11
4
5STATECHARTS = ../calculator-common/statemachine.scxml
6
7SOURCES += \
8    calculator-widgets.cpp \
9    mainwindow.cpp
10
11HEADERS += \
12    mainwindow.h
13
14FORMS += \
15    mainwindow.ui
16
17# install
18target.path = $$[QT_INSTALL_EXAMPLES]/scxml/calculator-widgets
19INSTALLS += target
20