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