2014-10-09 13:42:51 +02:00
|
|
|
set(LIBNAME "Zip")
|
|
|
|
set(POCO_LIBNAME "Poco${LIBNAME}")
|
2012-11-11 11:28:44 +01:00
|
|
|
|
2014-08-22 17:10:24 +02:00
|
|
|
# Sources
|
|
|
|
file(GLOB SRCS_G "src/*.cpp")
|
|
|
|
POCO_SOURCES_AUTO( SRCS ${SRCS_G})
|
2012-11-11 11:28:44 +01:00
|
|
|
|
2014-08-22 17:10:24 +02:00
|
|
|
# Headers
|
|
|
|
file(GLOB_RECURSE HDRS_G "include/*.h" )
|
|
|
|
POCO_HEADERS_AUTO( SRCS ${HDRS_G})
|
2012-11-11 11:28:44 +01:00
|
|
|
|
2014-10-09 13:42:51 +02:00
|
|
|
add_library( "${LIBNAME}" ${LIB_MODE} ${SRCS} )
|
|
|
|
add_library( "${POCO_LIBNAME}" ALIAS "${LIBNAME}")
|
|
|
|
set_target_properties( "${LIBNAME}"
|
2014-08-22 17:10:24 +02:00
|
|
|
PROPERTIES
|
|
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION}
|
2014-10-09 13:42:51 +02:00
|
|
|
OUTPUT_NAME ${POCO_LIBNAME}
|
|
|
|
DEFINE_SYMBOL Zip_EXPORTS
|
|
|
|
)
|
2012-11-11 11:28:44 +01:00
|
|
|
|
2014-10-09 13:42:51 +02:00
|
|
|
target_link_libraries( "${LIBNAME}" Util XML Foundation)
|
|
|
|
target_include_directories( "${LIBNAME}"
|
|
|
|
PUBLIC
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
|
|
|
|
$<INSTALL_INTERFACE:include>
|
|
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/src
|
|
|
|
)
|
2015-09-26 11:11:23 +02:00
|
|
|
target_compile_definitions("${LIBNAME}" PUBLIC ${LIB_MODE_DEFINITIONS})
|
2012-11-11 11:28:44 +01:00
|
|
|
|
2015-01-27 15:52:18 +01:00
|
|
|
POCO_INSTALL("${LIBNAME}")
|
|
|
|
POCO_GENERATE_PACKAGE("${LIBNAME}")
|
2014-10-09 13:42:51 +02:00
|
|
|
|
2012-11-11 11:28:44 +01:00
|
|
|
if (ENABLE_TESTS)
|
2015-01-27 15:52:18 +01:00
|
|
|
add_subdirectory(samples)
|
|
|
|
add_subdirectory(testsuite)
|
2012-11-11 11:28:44 +01:00
|
|
|
endif ()
|
|
|
|
|