-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibDA.pro
119 lines (106 loc) · 2.88 KB
/
libDA.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
#-------------------------------------------------
#
# Project created by QtCreator 2020-08-20T18:00:00
#
#-------------------------------------------------
QT += core gui widgets dbus xml script svg network x11extras core-private
greaterThan(QT_MAJOR_VERSION, 4) {
QT += widgets widgets-private
# Qt >= 5.8
greaterThan(QT_MAJOR_VERSION, 5)|greaterThan(QT_MINOR_VERSION, 7): QT += gui-private
else: QT += platformsupport-private
}
CONFIG += link_pkgconfig debug c++17
PKGCONFIG = dtkwidget dtkcore dtkgui x11 glib-2.0
unix:!macx: LIBS += -lKF5WindowSystem
TARGET = libDA
TEMPLATE = lib
VERSION = 1.0.5.1
DEFINES += LIBDA_LIBRARY
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as 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 you use 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
unix {
target.path = /usr/lib
INSTALLS += target
}
SUBDIRS += \
libDA.pro \
libDA.pro
HEADERS += \
abstractelement.h \
basicelements.h \
class_decl.h \
daddonapplication.h \
daddonbutton.h \
daddonsplittedbar.h \
daddonsplittedwindow.h \
diconic.h \
dotsslidetabs.h \
dynamicsvgparser.h \
effectwidget_p.h \
effectwidget.h \
element.h \
elementlist.h \
emptyitemdelegate.h \
graphictools.h \
imagepopup.h \
indraggablewidget.h \
iod.h \
libda_global.h \
libraryban.h \
macros.h \
multicolors.h \
notificationmanager.h \
proxypainter.h \
pwl.h \
sharednam.h \
stackedslidewidget.h \
swipinggesture.h \
touchinterfacing.h \
touchsystem.h \
translationengine.h \
trayicon.h \
visualstackelement.h \
wintools.h \
xwengine.h
SOURCES += \
abstractelement.cpp \
basicelements.cpp \
daddonapplication.cpp \
daddonbutton.cpp \
daddonsplittedbar.cpp \
daddonsplittedwindow.cpp \
diconic.cpp \
dotsslidetabs.cpp \
dynamicsvgparser.cpp \
effectwidget.cpp \
element.cpp \
elementlist.cpp \
emptyitemdelegate.cpp \
graphictools.cpp \
imagepopup.cpp \
indraggablewidget.cpp \
iod.cpp \
libraryban.cpp \
macros.cpp \
multicolors.cpp \
notificationmanager.cpp \
proxypainter.cpp \
pwl.cpp \
sharednam.cpp \
stackedslidewidget.cpp \
swipinggesture.cpp \
touchinterfacing.cpp \
touchsystem.cpp \
translationengine.cpp \
trayicon.cpp \
visualstackelement.cpp \
wintools.cpp \
xwengine.cpp