2012-11-11 11:28:44 +01:00
|
|
|
set(LIBNAME "PocoZip")
|
|
|
|
|
2014-07-09 16:02:35 +02:00
|
|
|
set(SRCS
|
|
|
|
src/Add.cpp
|
|
|
|
src/AutoDetectStream.cpp
|
|
|
|
src/Compress.cpp
|
|
|
|
src/Decompress.cpp
|
|
|
|
src/Delete.cpp
|
|
|
|
src/Keep.cpp
|
|
|
|
src/ParseCallback.cpp
|
|
|
|
src/PartialStream.cpp
|
|
|
|
src/Rename.cpp
|
|
|
|
src/Replace.cpp
|
|
|
|
src/SkipCallback.cpp
|
|
|
|
src/ZipArchive.cpp
|
|
|
|
src/ZipArchiveInfo.cpp
|
|
|
|
src/ZipCommon.cpp
|
|
|
|
src/ZipDataInfo.cpp
|
|
|
|
src/ZipException.cpp
|
|
|
|
src/ZipFileInfo.cpp
|
|
|
|
src/ZipLocalFileHeader.cpp
|
|
|
|
src/ZipManipulator.cpp
|
|
|
|
src/ZipOperation.cpp
|
|
|
|
src/ZipStream.cpp
|
|
|
|
src/ZipUtil.cpp
|
|
|
|
)
|
2012-11-11 11:28:44 +01:00
|
|
|
|
|
|
|
if (NOT POCO_STATIC)
|
|
|
|
add_definitions(-DZip_EXPORTS)
|
|
|
|
endif (NOT POCO_STATIC)
|
|
|
|
|
|
|
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
2014-07-09 16:02:35 +02:00
|
|
|
set_target_properties( ${LIBNAME}
|
2012-11-11 11:28:44 +01:00
|
|
|
PROPERTIES
|
|
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
|
2012-12-08 18:54:38 +01:00
|
|
|
target_link_libraries( ${LIBNAME} PocoUtil PocoXML PocoFoundation)
|
2012-11-11 11:28:44 +01:00
|
|
|
|
|
|
|
install(
|
|
|
|
DIRECTORY include/Poco
|
|
|
|
DESTINATION include
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
)
|
2014-07-09 16:02:35 +02:00
|
|
|
|
2012-11-11 11:28:44 +01:00
|
|
|
install(
|
|
|
|
TARGETS ${LIBNAME}
|
2014-05-21 23:16:34 +02:00
|
|
|
LIBRARY DESTINATION lib${LIB_SUFFIX}
|
|
|
|
ARCHIVE DESTINATION lib${LIB_SUFFIX}
|
|
|
|
RUNTIME DESTINATION bin
|
2012-11-11 11:28:44 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
if (ENABLE_TESTS)
|
|
|
|
add_subdirectory(samples)
|
|
|
|
add_subdirectory(testsuite)
|
|
|
|
endif ()
|
|
|
|
|