-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathallformatwidgets.pri
59 lines (48 loc) · 1.23 KB
/
allformatwidgets.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
INCLUDEPATH += $$PWD
DEPENDPATH += $$PWD
!contains(XCONFIG, binarywidget) {
XCONFIG += binarywidget
include($$PWD/Binary/binarywidget.pri)
}
!contains(XCONFIG, msdoswidget) {
XCONFIG += msdoswidget
include($$PWD/MSDOS/msdoswidget.pri)
}
!contains(XCONFIG, newidget) {
XCONFIG += newidget
include($$PWD/NE/newidget.pri)
}
!contains(XCONFIG, lewidget) {
XCONFIG += lewidget
include($$PWD/LE/lewidget.pri)
}
!contains(XCONFIG, pewidget) {
XCONFIG += pewidget
include($$PWD/PE/pewidget.pri)
}
!contains(XCONFIG, elfwidget) {
XCONFIG += elfwidget
include($$PWD/ELF/elfwidget.pri)
}
!contains(XCONFIG, machwidget) {
XCONFIG += machwidget
include($$PWD/MACH/machwidget.pri)
}
!contains(XCONFIG, machofatwidget) {
XCONFIG += machofatwidget
include($$PWD/MACHOFAT/machofatwidget.pri)
}
contains(XCONFIG, use_dex) {
!contains(XCONFIG, dexwidget) {
XCONFIG += dexwidget
include($$PWD/DEX/dexwidget.pri)
}
}
!contains(XCONFIG, xoptionswidget) {
XCONFIG += xoptionswidget
include($$PWD/../XOptions/xoptionswidget.pri)
}
DISTFILES += \
$$PWD/LICENSE \
$$PWD/README.md \
$$PWD/allformatwidgets.cmake