We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6faded7 commit d650fc5Copy full SHA for d650fc5
1 file changed
meson.build
@@ -33,6 +33,12 @@ endif
33
if libblas_path != [] or not libblas.found()
34
libblas = fc.find_library(libblas_name, dirs : libblas_path, required : false)
35
endif
36
+if libcblas_path == []
37
+ libcblas = dependency(libcblas_name, required : false)
38
+endif
39
+if libcblas_path != [] or not libcblas.found()
40
+ libcblas = fc.find_library(libcblas_name, dirs : libcblas_path, required : false)
41
42
43
# Headers
44
libdiffblas_include = include_directories('BLAS/include', 'TAPENADE/include')
0 commit comments