pcsx2/3rdparty/zlib/CMakeLists.txt

71 lines
1.2 KiB
CMake

# zlib library
# library name
set(Output pcsx2_zlib)
set(CommonFlags
-W
)
set(OptimizationFlags
-Os
)
# Debug - Build
if(CMAKE_BUILD_TYPE STREQUAL Debug)
# add defines
add_definitions(${CommonFlags} -g)
endif(CMAKE_BUILD_TYPE STREQUAL Debug)
# Devel - Build
if(CMAKE_BUILD_TYPE STREQUAL Devel)
# add defines
add_definitions(${CommonFlags} ${OptimizationFlags})
endif(CMAKE_BUILD_TYPE STREQUAL Devel)
# Release - Build
if(CMAKE_BUILD_TYPE STREQUAL Release)
# add defines
add_definitions(${CommonFlags} ${OptimizationFlags})
endif(CMAKE_BUILD_TYPE STREQUAL Release)
# variable with all sources of this library
set(zlibSources
compress.c
deflate.c
gzwrite.c
trees.c
crc32.c
gzlib.c
infback.c
inftrees.c
adler32.c
gzclose.c
gzread.c
inffast.c
inflate.c
uncompr.c
zutil.c)
# variable with all headers of this library
set(zlibHeaders
gzguts.h
inffast.h
inflate.h
zconf.h
zlib.h
zutil.h
deflate.h
inffixed.h
trees.h
crc32.h
inftrees.h )
# add library
add_library(${Output} STATIC ${zlibSources} ${zlibHeaders})
# User flags options
if(NOT USER_CMAKE_LD_FLAGS STREQUAL "")
target_link_libraries(${Output} "${USER_CMAKE_LD_FLAGS}")
endif(NOT USER_CMAKE_LD_FLAGS STREQUAL "")