blob: 85fd29ee2c450c69976182c71ff02253990f8a53 (
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_and_release
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
}
|