blob: 3cf970ee552ff2331a97396106801856ee0770b2 (
plain)
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
|
include_directories (${CMAKE_CURRENT_SOURCE_DIR})
add_definitions (-DNO_VIZ)
# adjust warnings
if (MSVC)
add_definitions (-wd4131) # uses old-style declarator
else ()
add_definitions (-DHAVE_UNISTD_H)
endif ()
add_library (z_bundled STATIC EXCLUDE_FROM_ALL
adler32.c
compress.c
crc32.c
deflate.c
gzclose.c
gzlib.c
gzread.c
gzwrite.c
inflate.c
infback.c
inftrees.c
inffast.c
trees.c
uncompr.c
zutil.c
)
set_target_properties (z_bundled PROPERTIES
COMPILE_FLAGS "${CMAKE_SHARED_LIBRARY_C_FLAGS}"
)
install (
FILES README
DESTINATION ${DOC_INSTALL_DIR}
RENAME LICENSE-zlib.txt
)
|