mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
set(test_deps opencv_core opencv_imgproc opencv_highgui opencv_ts ${OPENCV_MODULE_opencv_ts_DEPS}) |
|
|
|
ocv_check_dependencies(${test_deps}) |
|
|
|
if(OCV_DEPENDENCIES_FOUND) |
|
set(the_target "opencv_test_${name}") |
|
|
|
ocv_module_include_directories("${test_deps}" "${the_module}") |
|
|
|
file(GLOB test_srcs "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp" "${CMAKE_CURRENT_SOURCE_DIR}/*.cu") |
|
file(GLOB test_hdrs "${CMAKE_CURRENT_SOURCE_DIR}/*.hpp") |
|
source_group("Src" FILES ${test_srcs}) |
|
source_group("Include" FILES ${test_hdrs}) |
|
set(OPENCV_TEST_${the_module}_SOURCES ${test_srcs} ${test_hdrs}) |
|
|
|
CUDA_ADD_EXECUTABLE(${the_target} ${OPENCV_TEST_${the_module}_SOURCES}) |
|
target_link_libraries(${the_target} ${test_deps} ${OPENCV_LINKER_LIBS} ${CUDA_LIBRARIES}) |
|
add_dependencies(opencv_tests ${the_target}) |
|
|
|
# Additional target properties |
|
set_target_properties(${the_target} PROPERTIES |
|
DEBUG_POSTFIX "${OPENCV_DEBUG_POSTFIX}" |
|
RUNTIME_OUTPUT_DIRECTORY "${EXECUTABLE_OUTPUT_PATH}" |
|
) |
|
|
|
if(ENABLE_SOLUTION_FOLDERS) |
|
set_target_properties(${the_target} PROPERTIES FOLDER "tests accuracy") |
|
endif() |
|
|
|
enable_testing() |
|
get_target_property(LOC ${the_target} LOCATION) |
|
add_test(${the_target} "${LOC}") |
|
endif()
|
|
|