2018-05-07 15:28:38 +00:00
|
|
|
# Sources
|
|
|
|
file(GLOB SRCS_G "src/*.cpp")
|
2020-02-14 11:07:32 +01:00
|
|
|
POCO_SOURCES_AUTO(TEST_SRCS ${SRCS_G})
|
2018-05-07 15:28:38 +00:00
|
|
|
|
|
|
|
# Headers
|
2020-02-14 11:07:32 +01:00
|
|
|
file(GLOB_RECURSE HDRS_G "src/*.h")
|
|
|
|
POCO_HEADERS_AUTO(TEST_SRCS ${HDRS_G})
|
2018-05-07 15:28:38 +00:00
|
|
|
|
2020-02-14 11:07:32 +01:00
|
|
|
POCO_SOURCES_AUTO_PLAT(TEST_SRCS OFF
|
|
|
|
src/WinDriver.cpp
|
2018-05-07 15:28:38 +00:00
|
|
|
)
|
|
|
|
|
2020-02-14 11:07:32 +01:00
|
|
|
add_executable(DataPostgreSQL-testrunner ${TEST_SRCS})
|
|
|
|
add_test(
|
|
|
|
NAME DataPostgreSQL
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
COMMAND DataPostgreSQL-testrunner -ignore ${CMAKE_SOURCE_DIR}/cppignore.lnx -all
|
|
|
|
)
|
2020-01-14 21:45:56 +01:00
|
|
|
set_tests_properties(DataPostgreSQL PROPERTIES ENVIRONMENT POCO_BASE=${CMAKE_SOURCE_DIR})
|
2023-11-04 23:11:38 +01:00
|
|
|
target_link_libraries(DataPostgreSQL-testrunner PUBLIC Poco::DataPostgreSQL Poco::DataTest CppUnit)
|
2024-02-19 09:58:05 +01:00
|
|
|
target_include_directories(DataPostgreSQL-testrunner PUBLIC ${CMAKE_SOURCE_DIR}/Data/DataTest/include/)
|