summaryrefslogtreecommitdiff
path: root/utils/wpseditor/gui/src/QPropertyEditor/QPropertyEditor.pro
blob: ad1e31ce9adccb011beb44aa4a361ac8819e5ed6 (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
TEMPLATE = lib
CONFIG += staticlib debug
SOURCES = ColorCombo.cpp \
 Property.cpp \
 QPropertyEditorWidget.cpp \
 QPropertyModel.cpp \
 QVariantDelegate.cpp
HEADERS = ColorCombo.h \
 Property.h \
 QPropertyEditorWidget.h \
 QPropertyModel.h \
 QVariantDelegate.h
INCLUDEPATH += .
DESTDIR = ../../lib
UI_DIR = .
CONFIG(debug, debug|release) {
 TARGET =  QPropertyEditord
 OBJECTS_DIR =  ../../build/QPropertyEditor/debug
 MOC_DIR =  ../../build/QPropertyEditor/debug
}
CONFIG(release, debug|release) {
 TARGET =  QPropertyEditor
 OBJECTS_DIR =  ../../build/QPropertyEditor/release
 MOC_DIR =  ../../build/QPropertyEditor/release
 DEFINES +=  QT_NO_DEBUG
}