mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-01 09:24:55 +02:00
cmake: Zip cleanup
- explicitly list files Reviewed-by: Roger Meier <r.meier@siemens.com>
This commit is contained in:
parent
478360f6b6
commit
a06edac870
@ -1,13 +1,36 @@
|
|||||||
set(LIBNAME "PocoZip")
|
set(LIBNAME "PocoZip")
|
||||||
|
|
||||||
aux_source_directory(src SRCS)
|
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
|
||||||
|
)
|
||||||
|
|
||||||
if (NOT POCO_STATIC)
|
if (NOT POCO_STATIC)
|
||||||
add_definitions(-DZip_EXPORTS)
|
add_definitions(-DZip_EXPORTS)
|
||||||
endif (NOT POCO_STATIC)
|
endif (NOT POCO_STATIC)
|
||||||
|
|
||||||
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
||||||
set_target_properties( ${LIBNAME}
|
set_target_properties( ${LIBNAME}
|
||||||
PROPERTIES
|
PROPERTIES
|
||||||
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
|
||||||
target_link_libraries( ${LIBNAME} PocoUtil PocoXML PocoFoundation)
|
target_link_libraries( ${LIBNAME} PocoUtil PocoXML PocoFoundation)
|
||||||
@ -17,7 +40,7 @@ install(
|
|||||||
DESTINATION include
|
DESTINATION include
|
||||||
PATTERN ".svn" EXCLUDE
|
PATTERN ".svn" EXCLUDE
|
||||||
)
|
)
|
||||||
|
|
||||||
install(
|
install(
|
||||||
TARGETS ${LIBNAME}
|
TARGETS ${LIBNAME}
|
||||||
LIBRARY DESTINATION lib${LIB_SUFFIX}
|
LIBRARY DESTINATION lib${LIB_SUFFIX}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user