poco/Zip/CMakeLists.txt

39 lines
819 B
CMake
Raw Normal View History

2012-11-11 13:56:24 +01:00
set(LIBNAME "PocoZip")
2013-01-10 23:55:10 -06:00
<<<<<<< HEAD
2012-11-11 13:56:24 +01:00
set(LIBNAME "${LIBNAME}${LIB_EXT}")
2013-01-10 23:55:10 -06:00
=======
>>>>>>> develop
2012-11-11 13:56:24 +01:00
aux_source_directory(src SRCS)
if (NOT POCO_STATIC)
add_definitions(-DZip_EXPORTS)
endif (NOT POCO_STATIC)
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
set_target_properties( ${LIBNAME}
PROPERTIES
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
2013-01-10 23:55:10 -06:00
<<<<<<< HEAD
2012-11-11 13:56:24 +01:00
target_link_libraries( ${LIBNAME} PocoUtil${LIB_EXT} PocoXML${LIB_EXT} PocoFoundation${LIB_EXT})
2013-01-10 23:55:10 -06:00
=======
target_link_libraries( ${LIBNAME} PocoUtil PocoXML PocoFoundation)
2013-01-10 23:55:10 -06:00
>>>>>>> develop
2012-11-11 13:56:24 +01:00
install(
DIRECTORY include/Poco
DESTINATION include
PATTERN ".svn" EXCLUDE
)
install(
TARGETS ${LIBNAME}
DESTINATION lib
)
if (ENABLE_TESTS)
add_subdirectory(samples)
add_subdirectory(testsuite)
endif ()