-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzlib.pro
49 lines (40 loc) · 1.02 KB
/
zlib.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
# Created by and for Qt Creator This file was created for editing the project sources only.
# You may attempt to use it for building too, by modifying this file here.
TEMPLATE = lib
QT -= gui
QMAKE_CFLAGS += \
-Wno-implicit-fallthrough \
-Wno-implicit-function-declaration
TARGET = zlib
DESTDIR = zlib
HEADERS = \
$$PWD/zlib/crc32.h \
$$PWD/zlib/deflate.h \
$$PWD/zlib/gzguts.h \
$$PWD/zlib/inffast.h \
$$PWD/zlib/inffixed.h \
$$PWD/zlib/inflate.h \
$$PWD/zlib/inftrees.h \
$$PWD/zlib/trees.h \
$$PWD/zlib/zlib.h \
$$PWD/zlib/zutil.h \
$$PWD/zlib/zconf.h
SOURCES = \
$$PWD/zlib/adler32.c \
$$PWD/zlib/compress.c \
$$PWD/zlib/crc32.c \
$$PWD/zlib/deflate.c \
$$PWD/zlib/gzclose.c \
$$PWD/zlib/gzlib.c \
$$PWD/zlib/gzread.c \
$$PWD/zlib/gzwrite.c \
$$PWD/zlib/infback.c \
$$PWD/zlib/inffast.c \
$$PWD/zlib/inflate.c \
$$PWD/zlib/inftrees.c \
$$PWD/zlib/trees.c \
$$PWD/zlib/uncompr.c \
$$PWD/zlib/zutil.c
INCLUDEPATH = \
$$PWD/zlib
#DEFINES =