forked from qtinuum/QtnProperty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQtnProperty.pri
121 lines (113 loc) · 3.94 KB
/
QtnProperty.pri
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
CONFIG += qtn_unity_build
QT += script widgets
QTNPROPVERSION = 1.0.0
INCLUDEPATH += $$PWD $$PWD/Core $$PWD/PropertyWidget
VPATH += $$PWD/Core $$PWD/PropertyWidget
SOURCES_CORE += PropertyBase.cpp \
Property.cpp \
PropertySet.cpp \
Enum.cpp \
QObjectPropertySet.cpp \
Core/PropertyBool.cpp \
Core/PropertyInt.cpp \
Core/PropertyUInt.cpp \
Core/PropertyFloat.cpp \
Core/PropertyDouble.cpp \
Core/PropertyQString.cpp \
Core/PropertyQRect.cpp \
Core/PropertyEnum.cpp \
Core/PropertyEnumFlags.cpp \
Core/PropertyQSize.cpp \
Core/PropertyQPoint.cpp \
GUI/PropertyQColor.cpp \
GUI/PropertyButton.cpp \
GUI/PropertyQPen.cpp \
GUI/PropertyQBrush.cpp \
GUI/PropertyQFont.cpp
SOURCES_WIDGET += PropertyWidget.cpp \
PropertyView.cpp \
Utils/InplaceEditing.cpp \
Delegates/PropertyDelegateFactory.cpp \
Delegates/Core/PropertyDelegateBool.cpp \
Delegates/Core/PropertyDelegateInt.cpp \
Delegates/Core/PropertyDelegateUInt.cpp \
Delegates/Core/PropertyDelegateQString.cpp \
Delegates/Core/PropertyDelegateFloat.cpp \
Delegates/Core/PropertyDelegateDouble.cpp \
Delegates/Core/PropertyDelegateEnum.cpp \
Delegates/Core/PropertyDelegateQRect.cpp \
Delegates/Utils/PropertyEditorHandler.cpp \
Delegates/Core/PropertyDelegateEnumFlags.cpp \
Delegates/PropertyDelegate.cpp \
Delegates/PropertyDelegateAux.cpp \
Delegates/Utils/PropertyDelegatePropertySet.cpp \
Delegates/Utils/PropertyDelegateSliderBox.cpp \
Delegates/Utils/PropertyDelegateMisc.cpp \
Delegates/Utils/PropertyEditorAux.cpp \
Delegates/Core/PropertyDelegateQSize.cpp \
Delegates/Core/PropertyDelegateQPoint.cpp \
Delegates/GUI/PropertyDelegateQFont.cpp \
Delegates/GUI/PropertyDelegateQColor.cpp \
Delegates/GUI/PropertyDelegateButton.cpp \
Delegates/GUI/PropertyDelegateQPen.cpp \
Delegates/GUI/PropertyDelegateQBrush.cpp \
Utils/AccessibilityProxy.cpp
qtn_unity_build: SOURCES += $$PWD/QtnPropertyUnity.cpp
else: SOURCES += $$SOURCES_CORE $$SOURCES_WIDGET
HEADERS += CoreAPI.h\
PropertyBase.h \
Property.h\
PropertySet.h\
Enum.h\
QObjectPropertySet.h \
PropertyCore.h \
PropertyGUI.h \
Auxiliary/PropertyTemplates.h \
Auxiliary/PropertyMacro.h \
Auxiliary/PropertyAux.h \
Auxiliary/PropertyDelegateInfo.h \
Core/PropertyBool.h \
Core/PropertyInt.h \
Core/PropertyUInt.h \
Core/PropertyFloat.h \
Core/PropertyDouble.h \
Core/PropertyQString.h \
Core/PropertyQRect.h \
Core/PropertyEnum.h \
Core/PropertyEnumFlags.h \
Core/PropertyQSize.h \
Core/PropertyQPoint.h \
GUI/PropertyQColor.h \
GUI/PropertyButton.h \
GUI/PropertyQPen.h \
GUI/PropertyQBrush.h \
GUI/PropertyQFont.h
HEADERS += PropertyWidgetAPI.h \
PropertyWidget.h \
PropertyView.h \
Utils/InplaceEditing.h \
Delegates/PropertyDelegate.h \
Delegates/Utils/PropertyDelegatePropertySet.h \
Delegates/Utils/PropertyDelegateSliderBox.h \
Delegates/Utils/PropertyDelegateMisc.h \
Delegates/PropertyDelegateAux.h \
Delegates/PropertyDelegateFactory.h \
Delegates/Core/PropertyDelegateBool.h \
Delegates/Core/PropertyDelegateInt.h \
Delegates/Core/PropertyDelegateUInt.h \
Delegates/Core/PropertyDelegateQString.h \
Delegates/Core/PropertyDelegateFloat.h \
Delegates/Core/PropertyDelegateDouble.h \
Delegates/Core/PropertyDelegateEnum.h \
Delegates/Core/PropertyDelegateQRect.h \
Delegates/Utils/PropertyEditorHandler.h \
Delegates/Core/PropertyDelegateEnumFlags.h \
Delegates/Utils/PropertyEditorAux.h \
Delegates/Core/PropertyDelegateQSize.h \
Delegates/Core/PropertyDelegateQPoint.h \
Delegates/GUI/PropertyDelegateQFont.h \
Delegates/GUI/PropertyDelegateQColor.h \
Delegates/GUI/PropertyDelegateButton.h \
Delegates/GUI/PropertyDelegateQPen.h \
Delegates/GUI/PropertyDelegateQBrush.h \
Utils/AccessibilityProxy.h