2012-02-23 06:26:29 +00:00
|
|
|
QT += widgets
|
|
|
|
contains(QT_CONFIG, opengl):QT += opengl
|
2011-04-27 10:05:43 +00:00
|
|
|
HEADERS += boat.h \
|
|
|
|
bomb.h \
|
|
|
|
mainwindow.h \
|
|
|
|
submarine.h \
|
|
|
|
torpedo.h \
|
|
|
|
pixmapitem.h \
|
|
|
|
graphicsscene.h \
|
|
|
|
animationmanager.h \
|
|
|
|
states.h \
|
|
|
|
boat_p.h \
|
|
|
|
submarine_p.h \
|
|
|
|
qanimationstate.h \
|
|
|
|
progressitem.h \
|
|
|
|
textinformationitem.h
|
|
|
|
SOURCES += boat.cpp \
|
|
|
|
bomb.cpp \
|
|
|
|
main.cpp \
|
|
|
|
mainwindow.cpp \
|
|
|
|
submarine.cpp \
|
|
|
|
torpedo.cpp \
|
|
|
|
pixmapitem.cpp \
|
|
|
|
graphicsscene.cpp \
|
|
|
|
animationmanager.cpp \
|
|
|
|
states.cpp \
|
|
|
|
qanimationstate.cpp \
|
|
|
|
progressitem.cpp \
|
|
|
|
textinformationitem.cpp
|
|
|
|
RESOURCES += subattaq.qrc
|
|
|
|
|
|
|
|
# install
|
2011-06-22 12:58:03 +00:00
|
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/animation/sub-attaq
|
2011-04-27 10:05:43 +00:00
|
|
|
sources.files = $$SOURCES \
|
|
|
|
$$HEADERS \
|
|
|
|
$$RESOURCES \
|
|
|
|
$$FORMS \
|
|
|
|
sub-attaq.pro \
|
|
|
|
pics
|
2011-06-22 12:58:03 +00:00
|
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/animation/sub-attaq
|
2011-04-27 10:05:43 +00:00
|
|
|
INSTALLS += target \
|
|
|
|
sources
|