2013-12-03 19:50:44 +08:00
|
|
|
if(IOS OR APPLE)
|
2013-07-23 18:29:21 +08:00
|
|
|
ocv_module_disable(cudacodec)
|
2013-06-04 17:32:35 +08:00
|
|
|
endif()
|
|
|
|
|
2013-07-23 18:29:21 +08:00
|
|
|
set(the_description "CUDA-accelerated Video Encoding/Decoding")
|
2013-06-04 17:32:35 +08:00
|
|
|
|
2013-07-29 16:08:42 +08:00
|
|
|
ocv_warnings_disable(CMAKE_CXX_FLAGS /wd4127 /wd4324 /wd4512 -Wundef)
|
2013-06-04 17:32:35 +08:00
|
|
|
|
2013-07-29 16:08:42 +08:00
|
|
|
ocv_add_module(cudacodec opencv_highgui OPTIONAL opencv_cudev)
|
2013-06-04 17:32:35 +08:00
|
|
|
|
|
|
|
ocv_module_include_directories()
|
|
|
|
ocv_glob_module_sources()
|
|
|
|
|
2013-07-26 20:13:37 +08:00
|
|
|
set(extra_libs "")
|
2013-06-04 17:32:35 +08:00
|
|
|
|
|
|
|
if(HAVE_NVCUVID)
|
|
|
|
list(APPEND extra_libs ${CUDA_CUDA_LIBRARY} ${CUDA_nvcuvid_LIBRARY})
|
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
list(APPEND extra_libs ${CUDA_nvcuvenc_LIBRARY})
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
ocv_create_module(${extra_libs})
|
|
|
|
|
|
|
|
ocv_add_precompiled_headers(${the_module})
|
|
|
|
|
|
|
|
ocv_add_accuracy_tests()
|
|
|
|
ocv_add_perf_tests()
|