-
Notifications
You must be signed in to change notification settings - Fork 18
/
PropertyEditor.pro
55 lines (46 loc) · 1.18 KB
/
PropertyEditor.pro
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#-------------------------------------------------
#
# Project created by QtCreator 2014-11-28T23:45:39
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = PropertyEditor
TEMPLATE = app
SOURCES += main.cpp\
testwidget.cpp \
CPropertyEditor.cpp \
CBoolProperty.cpp \
CBaseProperty.cpp \
CIntegerProperty.cpp \
CStringProperty.cpp \
CDoubleProperty.cpp \
CListProperty.cpp \
CPropertyHeader.cpp \
CFontProperty.cpp \
CButtonBasedEditor.cpp \
QColorComboBox.cpp \
CColorProperty.cpp \
CDateProperty.cpp \
CTimeProperty.cpp \
CDateTimeProperty.cpp
HEADERS += testwidget.h \
CPropertyEditor.h \
CBoolProperty.h \
CBaseProperty.h \
CIntegerProperty.h \
CStringProperty.h \
CDoubleProperty.h \
CListProperty.h \
CPropertyHeader.h \
CFontProperty.h \
CButtonBasedEditor.h \
QColorComboBox.h \
CColorProperty.h \
CDateProperty.h \
CTimeProperty.h \
CDateTimeProperty.h
FORMS += testwidget.ui
INCLUDEPATH += .
RESOURCES += \
testwidget.qrc