2013-07-03 21:31:41 +08:00
|
|
|
if(NOT HAVE_CUDA)
|
|
|
|
ocv_module_disable(cudev)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(the_description "CUDA device layer")
|
|
|
|
|
2013-08-27 16:27:36 +08:00
|
|
|
ocv_warnings_disable(CMAKE_CXX_FLAGS /wd4189 /wd4505 -Wundef -Wmissing-declarations -Wunused-function -Wunused-variable -Wenum-compare)
|
2013-07-03 21:31:41 +08:00
|
|
|
|
|
|
|
ocv_add_module(cudev)
|
|
|
|
|
2013-07-11 15:50:02 +08:00
|
|
|
ocv_module_include_directories(opencv_core)
|
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
|
|
|
|
|
|
|
if(BUILD_TESTS)
|
|
|
|
add_subdirectory(test)
|
|
|
|
endif()
|