mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-01-28 06:02:56 +08:00
50 lines
894 B
Prolog
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
|
|
|