2013-07-03 15:31:41 +02:00
|
|
|
if(NOT HAVE_CUDA)
|
|
|
|
ocv_module_disable(cudev)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(the_description "CUDA device layer")
|
|
|
|
|
2014-12-18 09:35:45 +01:00
|
|
|
ocv_warnings_disable(CMAKE_CXX_FLAGS /wd4189 /wd4505 -Wundef -Wmissing-declarations -Wunused-function -Wunused-variable -Wenum-compare -Wshadow)
|
2013-07-03 15:31:41 +02:00
|
|
|
|
|
|
|
ocv_add_module(cudev)
|
|
|
|
|
2015-06-24 15:05:08 +02:00
|
|
|
ocv_module_include_directories(opencv_core opencv_hal)
|
2013-07-03 15:31:41 +02:00
|
|
|
|
2013-07-11 09:50:02 +02:00
|
|
|
file(GLOB_RECURSE lib_hdrs "include/opencv2/*.hpp")
|
|
|
|
file(GLOB lib_srcs "src/*.cpp")
|
2013-07-03 15:31:41 +02:00
|
|
|
|
2013-07-11 09:50:02 +02:00
|
|
|
ocv_set_module_sources(HEADERS ${lib_hdrs} SOURCES ${lib_srcs})
|
2013-07-03 15:31:41 +02:00
|
|
|
|
2013-07-11 09:50:02 +02:00
|
|
|
ocv_create_module()
|
2013-07-03 15:31:41 +02:00
|
|
|
|
2016-01-14 14:59:33 +01:00
|
|
|
if(BUILD_TESTS AND NOT BUILD_opencv_world)
|
2013-07-03 15:31:41 +02:00
|
|
|
add_subdirectory(test)
|
|
|
|
endif()
|