2013-12-18 14:10:47 -05:00
|
|
|
|
|
|
|
cmake_minimum_required (VERSION 2.6)
|
|
|
|
project (zlib)
|
|
|
|
|
|
|
|
include_directories ("${PROJECT_SOURCE_DIR}/../../src/")
|
|
|
|
|
|
|
|
file(GLOB SOURCE
|
|
|
|
"*.c"
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(zlib ${SOURCE})
|
2014-01-15 06:01:03 -05:00
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
# Remove SCL warnings, we expect this library to have been tested safe
|
|
|
|
SET_TARGET_PROPERTIES(
|
|
|
|
zlib PROPERTIES COMPILE_FLAGS "-D_CRT_SECURE_NO_WARNINGS"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|