summaryrefslogtreecommitdiffstats
path: root/utils/wpseditor/gui/gui.pro
blob: ada7ea3c98e6096a5f78bca1be93f7946c06d619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
CONFIG += qt warn_on debug
HEADERS += ../libwps/src/api.h \
 ../libwps/src/defs.h \
 src/slider.h \
 src/qtrackstate.h \
 src/qwpsstate.h \
 src/qwpseditorwindow.h \
 src/utils.h \
 src/qwpsdrawer.h \
 src/qsyntaxer.h
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 \
 src/qwpsdrawer_static.cpp \
 src/qsyntaxer.cpp
LIBS += -Lbin
CONFIG(debug, debug|release) {
 LIBS +=  -lQPropertyEditord
 TARGET =  wpseditord
 CONFIG += console
}
CONFIG(release, debug|release) {
 LIBS +=  -lQPropertyEditor
 TARGET =  wpseditor
}