You need to sign in or sign up before continuing.
Commit 85a817da authored by Davis King's avatar Davis King
Browse files

Added missing quotes so that cmake works on windows.

parent 1a46b1ba
...@@ -571,7 +571,7 @@ if (NOT TARGET dlib) ...@@ -571,7 +571,7 @@ if (NOT TARGET dlib)
# Find where cuSOLVER is since the FindCUDA cmake package doesn't # Find where cuSOLVER is since the FindCUDA cmake package doesn't
# bother to look for it. # bother to look for it.
get_filename_component(cuda_blas_path ${CUDA_CUBLAS_LIBRARIES} DIRECTORY) get_filename_component(cuda_blas_path "${CUDA_CUBLAS_LIBRARIES}" DIRECTORY)
find_library(cusolver cusolver HINTS ${cuda_blas_path}) find_library(cusolver cusolver HINTS ${cuda_blas_path})
# Also find OpenMP since cuSOLVER needs it. # Also find OpenMP since cuSOLVER needs it.
find_package(OpenMP) find_package(OpenMP)
......
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