qpcpp/examples/qt/mingw/game-gui/game-gui.pro

50 lines
894 B
Prolog
Raw Normal View History

2012-08-14 18:00:48 -04:00
#-------------------------------------------------
#
# Project created by QtCreator 2012-06-11T14:58:33
#
#-------------------------------------------------
TEMPLATE = app
QT += core gui
DEFINES += QT_NO_STATEMACHINE
TARGET = game-gui
INCLUDEPATH = . \
$(QPCPP)/include \
2012-12-10 16:01:54 -05:00
$(QPCPP)/ports/qt/mingw \
2012-08-14 18:00:48 -04:00
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
2012-12-10 16:01:54 -05:00
LIBS += -L$(QPCPP)/ports/qt/mingw/debug
2012-08-14 18:00:48 -04:00
} else {
2012-12-10 16:01:54 -05:00
LIBS += -L$(QPCPP)/ports/qt/mingw/release
2012-08-14 18:00:48 -04:00
}
LIBS += -lqp
RESOURCES = gui.qrc
win32:RC_FILE = gui.rc