2009-02-15 15:49:19 +00:00
|
|
|
set(LIBNAME "PocoXML")
|
|
|
|
|
|
|
|
aux_source_directory(src SRCS)
|
|
|
|
|
|
|
|
add_definitions(-DXML_NS -DXML_DTD -DHAVE_EXPAT_CONFIG_H)
|
|
|
|
|
|
|
|
add_library( ${LIBNAME} ${LIB_MODE} ${SRCS} )
|
|
|
|
set_target_properties( ${LIBNAME}
|
2012-01-07 13:45:03 +00:00
|
|
|
PROPERTIES
|
2011-09-15 08:31:51 +00:00
|
|
|
VERSION ${SHARED_LIBRARY_VERSION} SOVERSION ${SHARED_LIBRARY_VERSION} )
|
2009-02-22 19:58:27 +00:00
|
|
|
target_link_libraries( ${LIBNAME} PocoFoundation)
|
2009-02-15 15:49:19 +00:00
|
|
|
|
2009-02-18 20:47:32 +00:00
|
|
|
install(
|
|
|
|
DIRECTORY include/Poco
|
|
|
|
DESTINATION include
|
2009-04-27 19:22:30 +00:00
|
|
|
PATTERN ".svn" EXCLUDE
|
2009-02-18 20:47:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
2012-01-07 13:45:03 +00:00
|
|
|
TARGETS ${LIBNAME}
|
2009-02-18 20:47:32 +00:00
|
|
|
DESTINATION lib
|
|
|
|
)
|
|
|
|
|
2011-01-22 11:46:03 +00:00
|
|
|
if (ENABLE_TESTS)
|
|
|
|
add_subdirectory(samples)
|
|
|
|
add_subdirectory(testsuite)
|
|
|
|
endif ()
|
|
|
|
|