Added host compiler check before CUDA detection. For not supported compilers CUDA will be disabled.

pull/33/head
Anatoly Baksheev 12 years ago
parent 854902b077
commit dffba48517
  1. 5
      cmake/OpenCVDetectCUDA.cmake

@ -3,6 +3,11 @@ if(${CMAKE_VERSION} VERSION_LESS "2.8.3")
return()
endif()
if (NOT MSVC AND NOT CMAKE_COMPILER_IS_GNUCXX OR MINGW)
message(STATUS "CUDA compilation was disabled (due to unsuppoted host compiler).")
return()
endif()
find_package(CUDA 4.1)
if(CUDA_FOUND)

Loading…
Cancel
Save