zoneminder/tests/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.1 KiB
CMake
Raw Normal View History

# This file is part of the ZoneMinder Project.
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
include(Catch)
set(TEST_SOURCES
2021-05-03 05:04:26 +08:00
zm_box.cpp
zm_comms.cpp
2021-03-23 06:17:08 +08:00
zm_crypt.cpp
2021-04-12 15:07:35 +08:00
zm_font.cpp
zm_poly.cpp
2021-05-01 22:13:00 +08:00
zm_utils.cpp
zm_vector2.cpp)
add_executable(tests main.cpp ${TEST_SOURCES})
target_link_libraries(tests
PRIVATE
zm-core-interface
zm
${ZM_BIN_LIBS}
bcrypt
Catch2::Catch2)
target_include_directories(tests
PRIVATE
${CMAKE_CURRENT_BINARY_DIR})
catch_discover_tests(tests)
2021-04-12 15:07:35 +08:00
add_custom_command(TARGET tests
PRE_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_CURRENT_SOURCE_DIR}/data/ ${CMAKE_CURRENT_BINARY_DIR}/data/
BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/data/)