Update zlib.

This commit is contained in:
K. S. Ernest (iFire) Lee 2021-06-06 23:09:57 -07:00
parent 050de3ee8d
commit 700a9c4211
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_BINARY_DIR}")
# stuff we get from Conan # stuff we get from Conan
find_package(Boost 1.76 COMPONENTS system filesystem program_options REQUIRED ) find_package(Boost 1.76 COMPONENTS system filesystem program_options REQUIRED )
find_package(libxml2 MODULE REQUIRED) find_package(libxml2 MODULE REQUIRED)
find_package(ZLIB MODULE REQUIRED) find_package(zlib MODULE REQUIRED)
find_package(fmt MODULE REQUIRED) find_package(fmt MODULE REQUIRED)
# create a compilation database for e.g. clang-tidy # create a compilation database for e.g. clang-tidy
@ -212,7 +212,7 @@ target_link_libraries(libFBX2glTF
debug ${FBXSDK_LIBRARY_DEBUG} debug ${FBXSDK_LIBRARY_DEBUG}
fmt::fmt fmt::fmt
libxml2::libxml2 libxml2::libxml2
ZLIB_LIBRARIES zlib::zlib
${CMAKE_DL_LIBS} ${CMAKE_DL_LIBS}
${CMAKE_THREAD_LIBS_INIT} ${CMAKE_THREAD_LIBS_INIT}
) )