blob: 1887110020c1ba8e4444aaac3c4a5a7b58ed13c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
file(GLOB sources *.c)
file(GLOB headers *.h)
SET(zlib_STAT_SRCS
${sources}
)
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
)
add_library(zlib STATIC ${zlib_STAT_SRCS})
|