mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 02:22:57 +01:00
38 lines
868 B
CMake
38 lines
868 B
CMake
set( TEST_SRCS
|
|
src/AttributesImplTest.cpp
|
|
src/ChildNodesTest.cpp
|
|
src/DOMTestSuite.cpp
|
|
src/DocumentTest.cpp
|
|
src/DocumentTypeTest.cpp
|
|
src/Driver.cpp
|
|
src/ElementTest.cpp
|
|
src/EventTest.cpp
|
|
src/NamePoolTest.cpp
|
|
src/NameTest.cpp
|
|
src/NamespaceSupportTest.cpp
|
|
src/NodeAppenderTest.cpp
|
|
src/NodeIteratorTest.cpp
|
|
src/NodeTest.cpp
|
|
src/ParserWriterTest.cpp
|
|
src/SAXParserTest.cpp
|
|
src/SAXTestSuite.cpp
|
|
src/TextTest.cpp
|
|
src/TreeWalkerTest.cpp
|
|
src/XMLTestSuite.cpp
|
|
src/XMLWriterTest.cpp
|
|
)
|
|
|
|
#include_directories()
|
|
|
|
set( WIN_TEST_SRCS
|
|
src/WinDriver.cpp
|
|
)
|
|
|
|
set(TESTUNIT "${LIBNAME}-testrunner")
|
|
|
|
add_executable( ${TESTUNIT} ${TEST_SRCS} )
|
|
add_test(NAME ${LIBNAME} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMAND ${TESTUNIT} -all)
|
|
#set_target_properties( ${TESTUNIT} PROPERTIES COMPILE_FLAGS ${RELEASE_CXX_FLAGS} )
|
|
target_link_libraries( ${TESTUNIT} PocoXML PocoFoundation CppUnit)
|
|
|