File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11set (LIBNAME "PocoZip" )
22
3- aux_source_directory (src SRCS )
3+ set (SRCS
4+ src/Add.cpp
5+ src/AutoDetectStream.cpp
6+ src/Compress.cpp
7+ src/Decompress.cpp
8+ src/Delete.cpp
9+ src/Keep.cpp
10+ src/ParseCallback.cpp
11+ src/PartialStream.cpp
12+ src/Rename.cpp
13+ src/Replace.cpp
14+ src/SkipCallback.cpp
15+ src/ZipArchive.cpp
16+ src/ZipArchiveInfo.cpp
17+ src/ZipCommon.cpp
18+ src/ZipDataInfo.cpp
19+ src/ZipException.cpp
20+ src/ZipFileInfo.cpp
21+ src/ZipLocalFileHeader.cpp
22+ src/ZipManipulator.cpp
23+ src/ZipOperation.cpp
24+ src/ZipStream.cpp
25+ src/ZipUtil.cpp
26+ )
427
528if (NOT POCO_STATIC)
629 add_definitions (-DZip_EXPORTS )
730endif (NOT POCO_STATIC )
831
932add_library ( ${LIBNAME} ${LIB_MODE} ${SRCS} )
10- set_target_properties ( ${LIBNAME}
33+ set_target_properties ( ${LIBNAME}
1134 PROPERTIES
1235 VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
1336target_link_libraries ( ${LIBNAME} PocoUtil PocoXML PocoFoundation )
@@ -17,7 +40,7 @@ install(
1740 DESTINATION include
1841 PATTERN ".svn" EXCLUDE
1942 )
20-
43+
2144install (
2245 TARGETS ${LIBNAME}
2346 LIBRARY DESTINATION lib${LIB_SUFFIX}
You can’t perform that action at this time.
0 commit comments