-
Notifications
You must be signed in to change notification settings - Fork 142
/
LVGLBuilder.pro
199 lines (184 loc) · 6.18 KB
/
LVGLBuilder.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# LVGL Builder
#
# MIT licence
# Copyright (c) 2016 Gábor Kiss-Vámosi, 2019 Fabian Hauser
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
# documentation files (the “Software”), to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
# and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
# THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# ------------------------------------------------------------
#
# FreeType
#
# Copyright (C) 2006-2019 by David Turner, Robert Wilhelm, and Werner Lemberg.
# See freetype/docs/LICENSE.TXT for the freetype licence
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
CONFIG+=sdk_no_version_check
TARGET = LVGLBuilder
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
include(lvgl/lvgl.pri)
include(freetype/freetype.pri)
RC_FILE = resources/icon.rc
MOC_DIR = build/moc
OBJECTS_DIR = build/obj
RCC_DIR = build/rcc
UI_DIR = build/ui
SOURCES += \
LVGLCore.cpp \
LVGLDialog.cpp \
LVGLFontData.cpp \
LVGLFontDialog.cpp \
LVGLImageData.cpp \
LVGLNewDialog.cpp \
LVGLObject.cpp \
LVGLObjectModel.cpp \
LVGLProject.cpp \
LVGLStyle.cpp \
LVGLStyleModel.cpp \
LVGLTabWidget.cpp \
LVGLWidgetListView.cpp \
properties/LVGLPropertyAssignTextArea.cpp \
properties/LVGLPropertyColor.cpp \
properties/LVGLPropertyDate.cpp \
properties/LVGLPropertyDateList.cpp \
properties/LVGLPropertyFlags.cpp \
properties/LVGLPropertyGeometry.cpp \
properties/LVGLPropertyImage.cpp \
properties/LVGLPropertyList.cpp \
properties/LVGLPropertyPoints.cpp \
properties/LVGLPropertyRange.cpp \
properties/LVGLPropertyScale.cpp \
properties/LVGLPropertySeries.cpp \
properties/LVGLPropertyTextList.cpp \
properties/LVGLPropertyVal2.cpp \
widgets/LVGLArc.cpp \
widgets/LVGLBar.cpp \
widgets/LVGLButton.cpp \
widgets/LVGLButtonMatrix.cpp \
widgets/LVGLCalendar.cpp \
widgets/LVGLCanvas.cpp \
widgets/LVGLChart.cpp \
widgets/LVGLCheckBox.cpp \
widgets/LVGLColorPicker.cpp \
widgets/LVGLContainer.cpp \
widgets/LVGLDropDownList.cpp \
widgets/LVGLGauge.cpp \
widgets/LVGLImage.cpp \
LVGLItem.cpp \
widgets/LVGLImageButton.cpp \
widgets/LVGLImageSlider.cpp \
widgets/LVGLKeyboard.cpp \
widgets/LVGLLED.cpp \
widgets/LVGLLabel.cpp \
LVGLProperty.cpp \
LVGLPropertyModel.cpp \
LVGLSimulator.cpp \
widgets/LVGLLine.cpp \
widgets/LVGLLineMeter.cpp \
widgets/LVGLList.cpp \
widgets/LVGLMessageBox.cpp \
widgets/LVGLPage.cpp \
widgets/LVGLPreloader.cpp \
widgets/LVGLSlider.cpp \
widgets/LVGLSwitch.cpp \
widgets/LVGLTabview.cpp \
widgets/LVGLTextArea.cpp \
widgets/LVGLWidget.cpp \
LVGLWidgetModel.cpp \
LVGLWorker.cpp \
main.cpp \
MainWindow.cpp
HEADERS += \
LVGLCore.h \
LVGLDialog.h \
LVGLFontData.h \
LVGLFontDialog.h \
LVGLImageData.h \
LVGLNewDialog.h \
LVGLObject.h \
LVGLObjectModel.h \
LVGLProject.h \
LVGLStyle.h \
LVGLStyleModel.h \
LVGLTabWidget.h \
LVGLWidgetListView.h \
properties/LVGLPropertyAssignTextArea.h \
properties/LVGLPropertyColor.h \
properties/LVGLPropertyDate.h \
properties/LVGLPropertyDateList.h \
properties/LVGLPropertyFlags.h \
properties/LVGLPropertyGeometry.h \
properties/LVGLPropertyImage.h \
properties/LVGLPropertyList.h \
properties/LVGLPropertyPoints.h \
properties/LVGLPropertyRange.h \
properties/LVGLPropertyScale.h \
properties/LVGLPropertySeries.h \
properties/LVGLPropertyTextList.h \
properties/LVGLPropertyVal2.h \
widgets/LVGLArc.h \
widgets/LVGLBar.h \
widgets/LVGLButton.h \
widgets/LVGLButtonMatrix.h \
widgets/LVGLCalendar.h \
widgets/LVGLCanvas.h \
widgets/LVGLChart.h \
widgets/LVGLCheckBox.h \
widgets/LVGLColorPicker.h \
widgets/LVGLContainer.h \
widgets/LVGLDropDownList.h \
widgets/LVGLGauge.h \
widgets/LVGLImage.h \
LVGLItem.h \
widgets/LVGLImageButton.h \
widgets/LVGLImageSlider.h \
widgets/LVGLKeyboard.h \
widgets/LVGLLED.h \
widgets/LVGLLabel.h \
LVGLProperty.h \
LVGLPropertyModel.h \
LVGLSimulator.h \
widgets/LVGLLine.h \
widgets/LVGLLineMeter.h \
widgets/LVGLList.h \
widgets/LVGLMessageBox.h \
widgets/LVGLPage.h \
widgets/LVGLPreloader.h \
widgets/LVGLSlider.h \
widgets/LVGLSwitch.h \
widgets/LVGLTabview.h \
widgets/LVGLTextArea.h \
widgets/LVGLWidget.h \
LVGLWidgetModel.h \
LVGLWorker.h \
MainWindow.h \
widgets/LVGLWidgets.h
FORMS += \
LVGLFontDialog.ui \
LVGLNewDialog.ui \
MainWindow.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
resources/res.qrc