qpcpp/examples/qt/mingw/game-gui/game-gui.pro
Quantum Leaps e4269e3b15 4.5.03
2012-12-10 16:01:54 -05:00

50 lines
894 B
Prolog

#-------------------------------------------------
#
# Project created by QtCreator 2012-06-11T14:58:33
#
#-------------------------------------------------
TEMPLATE = app
QT += core gui
DEFINES += QT_NO_STATEMACHINE
TARGET = game-gui
INCLUDEPATH = . \
$(QPCPP)/include \
$(QPCPP)/ports/qt/mingw \
SOURCES += \
main.cpp \
gui.cpp \
bsp.cpp \
missile.cpp \
mine2.cpp \
mine1.cpp \
tunnel.cpp \
ship.cpp
HEADERS += \
game.h \
bsp.h \
gui.h
FORMS += gui.ui
CONFIG(debug, debug|release) {
DEFINES += Q_SPY
INCLUDEPATH += $(QTOOLS)/qspy/include
SOURCES += $(QTOOLS)/qspy/source/qspy.c
HEADERS += qs_port.h
LIBS += -L$(QPCPP)/ports/qt/mingw/debug
} else {
LIBS += -L$(QPCPP)/ports/qt/mingw/release
}
LIBS += -lqp
RESOURCES = gui.qrc
win32:RC_FILE = gui.rc