2004-10-19 00:29:58 +04:00
|
|
|
|
|
|
|
# source files for zlib
|
2021-02-21 21:29:13 +03:00
|
|
|
set (ZLIB_SRCS
|
|
|
|
adler32.c
|
|
|
|
compress.c
|
|
|
|
crc32.c
|
|
|
|
deflate.c
|
|
|
|
gzclose.c
|
|
|
|
gzlib.c
|
|
|
|
gzread.c
|
|
|
|
gzwrite.c
|
|
|
|
inflate.c
|
|
|
|
infback.c
|
|
|
|
inftrees.c
|
|
|
|
inffast.c
|
|
|
|
trees.c
|
|
|
|
uncompr.c
|
|
|
|
zutil.c
|
2004-10-19 00:29:58 +04:00
|
|
|
)
|
|
|
|
|
2010-04-06 02:33:58 +04:00
|
|
|
#######################################################################
|
2021-02-21 21:29:13 +03:00
|
|
|
|
|
|
|
# Suppress some Visual Studio compiler warnings
|
|
|
|
set (msvc_warnings /wd4267 /wd4996)
|
|
|
|
|
|
|
|
#######################################################################
|
|
|
|
# Build the static library
|
|
|
|
#######################################################################
|
|
|
|
|
|
|
|
FL_ADD_LIBRARY (fltk_z STATIC "${ZLIB_SRCS}")
|
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
target_compile_options (fltk_z PRIVATE ${msvc_warnings})
|
|
|
|
endif (MSVC)
|
2004-10-19 00:29:58 +04:00
|
|
|
|
2014-09-27 04:41:06 +04:00
|
|
|
#######################################################################
|
2021-02-21 21:29:13 +03:00
|
|
|
# Build the shared library (optional)
|
2014-09-27 04:41:06 +04:00
|
|
|
#######################################################################
|
2021-02-21 21:29:13 +03:00
|
|
|
|
|
|
|
if (OPTION_BUILD_SHARED_LIBS)
|
|
|
|
FL_ADD_LIBRARY (fltk_z SHARED "${ZLIB_SRCS}")
|
|
|
|
|
|
|
|
if (MSVC)
|
|
|
|
target_compile_options (fltk_z_SHARED PRIVATE ${msvc_warnings})
|
|
|
|
endif (MSVC)
|
|
|
|
|
|
|
|
endif (OPTION_BUILD_SHARED_LIBS)
|
2010-04-06 02:33:58 +04:00
|
|
|
|
2014-09-27 04:41:06 +04:00
|
|
|
#######################################################################
|
2021-02-21 21:29:13 +03:00
|
|
|
# Install the library headers
|
2014-09-27 04:41:06 +04:00
|
|
|
#######################################################################
|
2021-02-21 21:29:13 +03:00
|
|
|
|
|
|
|
install (FILES zconf.h zlib.h zutil.h
|
|
|
|
DESTINATION ${FLTK_INCLUDEDIR}/FL/images
|
|
|
|
)
|