[opencv-cuda] handle properly cuda enabled but opencv built without cuda support

pull/2476/head
Stefano Sinigardi 6 years ago
parent 278df5e89e
commit 6c7540420b
  1. 2
      CMakeLists.txt

@ -103,7 +103,7 @@ else()
endif() endif()
if(OpenCV_FOUND) if(OpenCV_FOUND)
if(NOT OpenCV_CUDA_VERSION) if(ENABLE_CUDA AND NOT OpenCV_CUDA_VERSION)
set(SKIP_USELIB_TRACK "TRUE" CACHE BOOL "Skip building uselib_track" FORCE) set(SKIP_USELIB_TRACK "TRUE" CACHE BOOL "Skip building uselib_track" FORCE)
message(WARNING "The build of OpenCV does not have CUDA support, so some tools have been disabled! Please rebuild OpenCV with CUDA support to build them!") message(WARNING "The build of OpenCV does not have CUDA support, so some tools have been disabled! Please rebuild OpenCV with CUDA support to build them!")
endif() endif()

Loading…
Cancel
Save