mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-22 07:05:03 +01:00
7 lines
232 B
CMake
7 lines
232 B
CMake
|
if (POCO_UNBUNDLED)
|
||
|
find_package(ZLIB REQUIRED)
|
||
|
set(SYSLIBS ${SYSLIBS} ${ZLIB_LIBRARIES})
|
||
|
include_directories(${ZLIB_INCLUDE_DIRS})
|
||
|
endif (POCO_UNBUNDLED)
|
||
|
target_link_libraries(${BII_BLOCK_TARGET} INTERFACE ${SYSLIBS} )
|