-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathformatwidgets.pri
83 lines (64 loc) · 1.61 KB
/
formatwidgets.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
INCLUDEPATH += $$PWD
DEPENDPATH += $$PWD
!contains(XCONFIG, use_dex) {
XCONFIG += use_dex
}
!contains(XCONFIG, use_archive) {
XCONFIG += use_archive
}
HEADERS += \
$$PWD/formatswidget.h
SOURCES += \
$$PWD/formatswidget.cpp
FORMS += \
$$PWD/formatswidget.ui
!contains(XCONFIG, binarywidget) {
XCONFIG += binarywidget
include($$PWD/Binary/binarywidget.pri)
}
!contains(XCONFIG, msdoswidget) {
XCONFIG += msdoswidget
include($$PWD/MSDOS/msdoswidget.pri)
}
!contains(XCONFIG, elfwidget) {
XCONFIG += elfwidget
include($$PWD/ELF/elfwidget.pri)
}
!contains(XCONFIG, msdoswidget) {
XCONFIG += lewidget
include($$PWD/LE/lewidget.pri)
}
!contains(XCONFIG, machwidget) {
XCONFIG += machwidget
include($$PWD/MACH/machwidget.pri)
}
!contains(XCONFIG, machofatwidget) {
XCONFIG += machofatwidget
include($$PWD/MACHOFAT/machofatwidget.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, dexwidget) {
XCONFIG += dexwidget
include($$PWD/DEX/dexwidget.pri)
}
!contains(XCONFIG, archive_widget) {
XCONFIG += archive_widget
include($$PWD/../archive_widget/archive_widget.pri)
}
!contains(XCONFIG, xshortcuts) {
XCONFIG += xshortcuts
include($$PWD/../XShortcuts/xshortcuts.pri)
}
DISTFILES += \
$$PWD/formatwidgets.cmake