2012-06-26 14:37:02 +02:00
|
|
|
set( TEST_SRCS
|
|
|
|
src/CompressTest.cpp
|
|
|
|
src/Driver.cpp
|
|
|
|
src/PartialStreamTest.cpp
|
|
|
|
src/ZipTest.cpp
|
|
|
|
src/ZipTestSuite.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
#include_directories()
|
|
|
|
|
|
|
|
set( WIN_TEST_SRCS
|
|
|
|
src/WinDriver.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(TESTUNIT "${LIBNAME}-testrunner")
|
|
|
|
|
|
|
|
add_executable( ${TESTUNIT} ${TEST_SRCS} )
|
2014-06-16 15:34:27 +02:00
|
|
|
add_test(NAME ${LIBNAME} WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMAND ${TESTUNIT} -all)
|
2012-06-26 14:37:02 +02:00
|
|
|
#set_target_properties( ${TESTUNIT} PROPERTIES COMPILE_FLAGS ${RELEASE_CXX_FLAGS} )
|
|
|
|
target_link_libraries( ${TESTUNIT} PocoZip PocoNet PocoFoundation CppUnit )
|
|
|
|
|
2014-06-16 15:34:27 +02:00
|
|
|
# The test is run in the build directory. So the test data is copied there too
|
|
|
|
add_custom_command(TARGET ${TESTUNIT} POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_CURRENT_SOURCE_DIR}/data ${CMAKE_CURRENT_BINARY_DIR}/data )
|
|
|
|
|