zdbsp/zlib/CMakeLists.txt
Randy Heit b53fe459f9 - Updated ZDBSP to zlib 1.2.7.
SVN r3984 (trunk)
2012-12-08 02:45:23 +00:00

21 lines
378 B
CMake

cmake_minimum_required( VERSION 2.4 )
if( CMAKE_COMPILER_IS_GNUC )
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -fomit-frame-pointer" )
endif( CMAKE_COMPILER_IS_GNUC )
add_library( z
adler32.c
compress.c
crc32.c
deflate.c
trees.c
zutil.c
crc32.h
deflate.h
gzguts.h
trees.h
zconf.h
zlib.h
zutil.h )
target_link_libraries( z )