Commit a865e635 authored by Davis King's avatar Davis King

Fixed spelling error that broke cmake just now.

parent c451ac11
...@@ -611,10 +611,10 @@ if (NOT TARGET dlib) ...@@ -611,10 +611,10 @@ if (NOT TARGET dlib)
# Intel MKL, hasn't already decided what to use. This is because # Intel MKL, hasn't already decided what to use. This is because
# it makes the MKL bug out if you link to another openmp lib other # it makes the MKL bug out if you link to another openmp lib other
# than Intel's when you use the MKL. # than Intel's when you use the MKL.
if (NOT openmp_libarires AND NOT MSVC AND NOT XCODE) if (NOT openmp_libraries AND NOT MSVC AND NOT XCODE)
find_package(OpenMP) find_package(OpenMP)
if (OPENMP_FOUND) if (OPENMP_FOUND)
set(openmp_libarires ${OpenMP_CXX_FLAGS}) set(openmp_libraries ${OpenMP_CXX_FLAGS})
else() else()
message(STATUS "*** Didn't find OpenMP, which is required to use CUDA. ***") message(STATUS "*** Didn't find OpenMP, which is required to use CUDA. ***")
set(CUDA_FOUND 0) set(CUDA_FOUND 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment