mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 10:32:57 +01:00
7950001803
- Add missing CMakeLists.txt - Use POCO_ macros to improve code structure in XCode/VisualStudio - Better ODBC detection - Remove unnecessary commented out code The CMake documentation recommends explicitly listing source files, but because CMake is not the primary build system GLOB patterns are used for the moment.
80 lines
1.6 KiB
CMake
80 lines
1.6 KiB
CMake
set(LIBNAME "PocoSevenZip")
|
|
|
|
# Sources
|
|
file(GLOB SRCS_G "src/*.cpp")
|
|
POCO_SOURCES_AUTO( SRCS ${SRCS_G})
|
|
|
|
# Headers
|
|
file(GLOB_RECURSE HDRS_G "include/*.h" )
|
|
POCO_HEADERS_AUTO( SRCS ${HDRS_G})
|
|
|
|
# TODO: Currently only bundled is supported, in future this should also be possible
|
|
# with an unbundled version of 7z
|
|
POCO_SOURCES( SRCS 7z
|
|
src/7zAlloc.c
|
|
src/7zBuf2.c
|
|
src/7zBuf.c
|
|
src/7zCrc.c
|
|
src/7zCrcOpt.c
|
|
src/7zDec.c
|
|
src/7zFile.c
|
|
src/7zIn.c
|
|
src/7zStream.c
|
|
src/Alloc.c
|
|
src/Bcj2.c
|
|
src/Bra86.c
|
|
src/Bra.c
|
|
# src/BraIA64.c
|
|
src/CpuArch.c
|
|
# src/Delta.c
|
|
# src/LzFind.c
|
|
# src/LzFindMt.c
|
|
src/Lzma2Dec.c
|
|
# src/Lzma2Enc.c
|
|
src/Lzma86Dec.c
|
|
# src/Lzma86Enc.c
|
|
src/LzmaDec.c
|
|
# src/LzmaEnc.c
|
|
# src/LzmaLib.c
|
|
# src/MtCoder.c
|
|
src/Ppmd7.c
|
|
src/Ppmd7Dec.c
|
|
# src/Ppmd7Enc.c
|
|
# src/Sha256.c
|
|
# src/Threads.c
|
|
# src/Xz.c
|
|
# src/XzCrc64.c
|
|
# src/XzDec.c
|
|
# src/XzEnc.c
|
|
# src/XzIn.c
|
|
)
|
|
|
|
include_directories( include )
|
|
|
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
|
set_target_properties( ${LIBNAME}
|
|
PROPERTIES
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION}
|
|
DEFINE_SYMBOL SevenZip_EXPORTS)
|
|
target_link_libraries( ${LIBNAME} PocoUtil PocoXML PocoFoundation)
|
|
|
|
install(
|
|
DIRECTORY include/Poco
|
|
DESTINATION include
|
|
PATTERN ".svn" EXCLUDE
|
|
)
|
|
|
|
install(
|
|
TARGETS ${LIBNAME}
|
|
LIBRARY DESTINATION lib${LIB_SUFFIX}
|
|
ARCHIVE DESTINATION lib${LIB_SUFFIX}
|
|
RUNTIME DESTINATION bin
|
|
)
|
|
|
|
if (ENABLE_TESTS)
|
|
add_subdirectory(samples)
|
|
# TODO: Add tests
|
|
#add_subdirectory(testsuite)
|
|
endif ()
|
|
|