blob: 59415be2f6edb64ae74a9e0784f9ae720daba603 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
HEADERS += mainwindow.h \
plugin.h \
tankitem.h \
rocketitem.h \
gameitem.h \
gameovertransition.h
SOURCES += main.cpp \
mainwindow.cpp \
tankitem.cpp \
rocketitem.cpp \
gameitem.cpp \
gameovertransition.cpp
CONFIG += console
# install
target.path = $$[QT_INSTALL_EXAMPLES]/statemachine/tankgame
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS tankgame.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/statemachine/tankgame
INSTALLS += target sources
|