-
Notifications
You must be signed in to change notification settings - Fork 1
/
full.pro
61 lines (49 loc) · 1.1 KB
/
full.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
TEMPLATE = subdirs
DESTDIR = $${OUT_PWD}/../
SUBDIRS = helpz Das plus dbus
Das.subdir = lib/Das
Das.depends = helpz
plus.subdir = lib/plus
plus.depends = Das
dbus.subdir = lib/dbus
dbus.depends = plus
!WithoutWebApi {
SUBDIRS += webapi
webapi.depends = Das plus dbus
}
!GuiOnly {
SUBDIRS += client plugins
plugins.subdir = client/plugins
plugins.depends = Das plus
client.depends = Das plus
}
CONFIG(debug, debug|release) {
SUBDIRS += tests
tests.depends = Das plus
CONFIG ~= s/-O[0123s]//g
CONFIG += -O0
}
CONFIG(release, debug|release) {
}
CONFIG(DasServer, DasServer|Raspberry) {
SUBDIRS += server telegrambot
server.depends = dbus
telegrambot.depends = dbus
}
!ServerOnly {
SUBDIRS += gui
gui.depends = Das plus
CONFIG(Raspberry, DasServer|Raspberry) {
# SUBDIRS += tests/cserial
} else { # IF Default - Desktop
!GuiOnly {
SUBDIRS += emulator
emulator.subdir = client/emulator
emulator.depends = Das plus
}
}
}
OTHER_FILES += \
README.md \
TODO \
.gitlab-ci.yml