Skip to content
Snippets Groups Projects
Commit e969bb64 authored by Martin Beseda's avatar Martin Beseda
Browse files

FIX: Initializing *_FOUND variables to an empty string, if NOTFOUND.

parent a66dd111
No related branches found
No related tags found
No related merge requests found
......@@ -77,6 +77,18 @@ if ("${BUILD_LIB}" STREQUAL "yes")
set(GFORT gfortran)
endif()
if(NOT OpenBLAS_LIBRARIES)
set(OpenBLAS_LIBRARIES "")
endif()
if(NOT BLAS_LIBRARIES)
set(BLAS_LIBRARIES "")
endif()
if(NOT LAPACK_LIBRARIES)
set(LAPACK_LIBRARIES "")
endif()
target_link_libraries(
lib4neuro
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment