]> git.cworth.org Git - apitrace/blob - thirdparty/zlib/CMakeLists.txt
1721574e450803f09928fcb79964f1088e71a942
[apitrace] / thirdparty / zlib / CMakeLists.txt
1 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
2
3 add_definitions(-DNO_VIZ)
4
5 add_library (z_bundled STATIC
6     adler32.c
7     compress.c
8     crc32.c
9     deflate.c
10     gzclose.c
11     gzlib.c
12     gzread.c
13     gzwrite.c
14     inflate.c
15     infback.c
16     inftrees.c
17     inffast.c
18     trees.c
19     uncompr.c
20     zutil.c
21 )
22
23 set_target_properties (z_bundled PROPERTIES
24     COMPILE_FLAGS "${CMAKE_SHARED_LIBRARY_C_FLAGS}"
25 )