-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathxarchive.pri
78 lines (70 loc) · 1.61 KB
/
xarchive.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
INCLUDEPATH += $$PWD
DEPENDPATH += $$PWD
HEADERS += \
$$PWD/x_ar.h \
$$PWD/xapk.h \
$$PWD/xapks.h \
$$PWD/xarchive.h \
$$PWD/xcab.h \
$$PWD/xcompress.h \
$$PWD/xcompresseddevice.h \
$$PWD/xdeb.h \
$$PWD/xdos16.h \
$$PWD/xgzip.h \
$$PWD/xipa.h \
$$PWD/xjar.h \
$$PWD/xlha.h \
$$PWD/xmachofat.h \
$$PWD/xrar.h \
$$PWD/xsevenzip.h \
$$PWD/xtar.h \
$$PWD/xtgz.h \
$$PWD/xzip.h \
$$PWD/xnpm.h \
$$PWD/xzlib.h
SOURCES += \
$$PWD/x_ar.cpp \
$$PWD/xapk.cpp \
$$PWD/xapks.cpp \
$$PWD/xarchive.cpp \
$$PWD/xcab.cpp \
$$PWD/xcompress.cpp \
$$PWD/xcompresseddevice.cpp \
$$PWD/xdeb.cpp \
$$PWD/xdos16.cpp \
$$PWD/xgzip.cpp \
$$PWD/xipa.cpp \
$$PWD/xjar.cpp \
$$PWD/xlha.cpp \
$$PWD/xmachofat.cpp \
$$PWD/xrar.cpp \
$$PWD/xsevenzip.cpp \
$$PWD/xtar.cpp \
$$PWD/xtgz.cpp \
$$PWD/xzip.cpp \
$$PWD/xnpm.cpp \
$$PWD/xzlib.cpp
!contains(XCONFIG, xbinary) {
XCONFIG += xbinary
include($$PWD/../Formats/xbinary.pri)
}
!contains(XCONFIG, xmach) {
XCONFIG += xmach
include($$PWD/../Formats/exec/xmach.pri) # MACHFAT archive contains Mach-O
}
!contains(XCONFIG, zlib) {
XCONFIG += zlib
include($$PWD/3rdparty/zlib/zlib.pri)
}
!contains(XCONFIG, bzip2) {
XCONFIG += bzip2
include($$PWD/3rdparty/bzip2/bzip2.pri)
}
!contains(XCONFIG, lzma) {
XCONFIG += lzma
include($$PWD/3rdparty/lzma/lzma.pri)
}
DISTFILES += \
$$PWD/LICENSE \
$$PWD/README.md \
$$PWD/xarchive.cmake