mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 19:50:38 +08:00
32 lines
822 B
CMake
32 lines
822 B
CMake
|
if(ANDROID OR IOS)
|
||
|
ocv_module_disable(superres)
|
||
|
endif()
|
||
|
|
||
|
set(the_description "Super Resolution")
|
||
|
ocv_add_module(superres opencv_imgproc opencv_video OPTIONAL opencv_gpu opencv_highgui)
|
||
|
ocv_module_include_directories()
|
||
|
|
||
|
ocv_warnings_disable(CMAKE_CXX_FLAGS -Wundef /wd4127)
|
||
|
|
||
|
if(HAVE_CUDA)
|
||
|
ocv_source_group("Src\\Cuda" GLOB "src/cuda/*.cu")
|
||
|
ocv_include_directories("${OpenCV_SOURCE_DIR}/modules/gpu/include" ${CUDA_INCLUDE_DIRS})
|
||
|
|
||
|
file(GLOB lib_cuda "src/cuda/*.cu")
|
||
|
ocv_cuda_compile(cuda_objs ${lib_cuda})
|
||
|
|
||
|
set(cuda_link_libs ${CUDA_LIBRARIES})
|
||
|
else()
|
||
|
set(lib_cuda "")
|
||
|
set(cuda_objs "")
|
||
|
set(cuda_link_libs "")
|
||
|
endif()
|
||
|
|
||
|
ocv_glob_module_sources(SOURCES ${lib_cuda} ${cuda_objs})
|
||
|
|
||
|
ocv_create_module(${cuda_link_libs})
|
||
|
ocv_add_precompiled_headers(${the_module})
|
||
|
|
||
|
ocv_add_accuracy_tests()
|
||
|
ocv_add_perf_tests()
|