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

45 lines
838 B
Prolog
Raw Normal View History

2012-08-14 18:00:48 -04:00
#-------------------------------------------------
#
# Project created by QtCreator 2012-05-10T10:48:40
#
#-------------------------------------------------
TEMPLATE = app
QT += core gui
TARGET = dpp-gui
DEFINES += QT_NO_STATEMACHINE
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 \
table.cpp \
philo.cpp
HEADERS += \
dpp.h \
gui.h \
bsp.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