2008-08-29 21:08:38 +00:00
|
|
|
TEMPLATE = app
|
|
|
|
TARGET =
|
|
|
|
DEPENDPATH += . build src ui
|
|
|
|
INCLUDEPATH += . src/QPropertyEditor ../libwps/src
|
|
|
|
DESTDIR = bin
|
|
|
|
OBJECTS_DIR = build
|
|
|
|
MOC_DIR = build
|
|
|
|
UI_DIR = build
|
|
|
|
QMAKE_LIBDIR += lib
|
|
|
|
QT = gui core
|
2008-09-03 19:24:50 +00:00
|
|
|
CONFIG += qt warn_on debug
|
2008-08-29 21:08:38 +00:00
|
|
|
HEADERS += ../libwps/src/api.h \
|
|
|
|
../libwps/src/defs.h \
|
|
|
|
src/slider.h \
|
|
|
|
src/qtrackstate.h \
|
|
|
|
src/qwpsstate.h \
|
|
|
|
src/qwpseditorwindow.h \
|
|
|
|
src/utils.h \
|
2008-09-03 19:24:50 +00:00
|
|
|
src/qwpsdrawer.h \
|
|
|
|
src/qsyntaxer.h
|
2008-08-29 21:08:38 +00:00
|
|
|
FORMS += ui/mainwindow.ui ui/slider.ui
|
|
|
|
SOURCES += src/main.cpp \
|
|
|
|
src/slider.cpp \
|
|
|
|
src/qtrackstate.cpp \
|
|
|
|
src/qwpsstate.cpp \
|
|
|
|
src/qwpseditorwindow.cpp \
|
|
|
|
src/utils.cpp \
|
|
|
|
src/qwpsdrawer.cpp \
|
2008-09-03 19:24:50 +00:00
|
|
|
src/qwpsdrawer_static.cpp \
|
|
|
|
src/qsyntaxer.cpp
|
2008-08-29 21:08:38 +00:00
|
|
|
LIBS += -Lbin
|
|
|
|
CONFIG(debug, debug|release) {
|
|
|
|
LIBS += -lQPropertyEditord
|
|
|
|
TARGET = wpseditord
|
2008-09-03 19:24:50 +00:00
|
|
|
CONFIG += console
|
2008-08-29 21:08:38 +00:00
|
|
|
}
|
|
|
|
CONFIG(release, debug|release) {
|
|
|
|
LIBS += -lQPropertyEditor
|
|
|
|
TARGET = wpseditor
|
|
|
|
}
|