Typo in OpenCVDetectOpenCL.cmake causes OpenCL not to be found on Win32 (Bug #2610)
Description
The CUDA_PATH is obtained on (line 22) using:
set(ENV_CUDA_PATH $ENV{CUDA_PATH})
but later (line 30) the test is done as:
elseif(ENV_CUDAPATH AND WIN32)
when it should be
elseif(ENV_CUDA_PATH AND WIN32)
Associated revisions
Merge pull request #2610 from ilya-lavrenov:ipp_cvtcolor
History
Updated by Anna Kogan over 12 years ago
Hello Justin,
Thank you for reporting the issue!
- Target version set to 2.4.4
Updated by Anna Kogan over 12 years ago
- Pull request set to https://github.com/Itseez/opencv/pull/214
Updated by Andrey Kamaev about 12 years ago
Fix is pushed to 2.4: 709a1cc
- Status changed from Open to Done
Updated by Andrey Kamaev about 12 years ago
- Target version changed from 2.4.4 to 2.4.3.2