blob: 17ef6b4eb7b7590a38421e3240a07e203e884b45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
TEMPLATE = subdirs
SUBDIRS = \
factorial \
pingpong
!contains(QT_CONFIG, no-gui) {
SUBDIRS += \
eventtransitions \
rogue \
trafficlight \
twowaybutton
}
# install
target.path = $$[QT_INSTALL_EXAMPLES]/statemachine
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS statemachine.pro README
sources.path = $$[QT_INSTALL_EXAMPLES]/statemachine
INSTALLS += target sources
|