opencv/tests/CMakeLists.txt
Anatoly Baksheev 1387bfcde0 added GPU implementation of morphology functions (using NPP) and tests for it.
added npp_error function
added check_and_treat_gpu_exception function for tests_gpu
2010-09-17 15:28:59 +00:00

18 lines
269 B
CMake

ENABLE_TESTING()
add_subdirectory(cv)
add_subdirectory(cxcore)
add_subdirectory(ml)
add_subdirectory(cxts)
if(WITH_CUDA)
set (BUILD_TESTS_GPU OFF CACHE BOOL "Build tests GPU")
if(BUILD_TESTS_GPU AND WITH_CUDA)
add_subdirectory(gpu)
endif()
endif()