Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
morse_cmake
Compare Revisions
2c74b63d2021ad19c45c52211c1de019d86f3c98...b102625ef8626da53d4461e84050dc4cb5e62afb
Commits (1)
fix BLAS_SEQ/PAR_COMPILER_FLAGS and BLAS_SEQ/PAR_LINKER_FLAGS variables handling
· b102625e
PRUVOST Florent
authored
Jan 04, 2018
b102625e
Hide whitespace changes
Inline
Side-by-side
modules/find/FindBLASEXT.cmake
View file @
b102625e
...
...
@@ -301,11 +301,7 @@ endif()
# Reset pure BLAS cmake variables to the sequential case (arbitrary default)
if
(
BLAS_SEQ_LIBRARIES
)
set
(
BLAS_LIBRARIES
"
${
BLAS_SEQ_LIBRARIES
}
"
)
endif
()
if
(
BLAS_SEQ_COMPILER_FLAGS
)
set
(
BLAS_COMPILER_FLAGS
"
${
BLAS_SEQ_COMPILER_FLAGS
}
"
)
endif
()
if
(
BLAS_SEQ_LINKER_FLAGS
)
set
(
BLAS_LINKER_FLAGS
"
${
BLAS_SEQ_LINKER_FLAGS
}
"
)
endif
()
...
...