From: Martin Kroeker Date: Thu, 12 Oct 2017 15:02:01 +0000 (+0200) Subject: Optionally add ReLAPACK to LIB_COMPONENTS X-Git-Tag: v0.3.0~76^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=962b20a9bb9ee12cc6ad8381e04bd00bcf1e8e19;p=platform%2Fupstream%2Fopenblas.git Optionally add ReLAPACK to LIB_COMPONENTS --- diff --git a/cmake/system.cmake b/cmake/system.cmake index daa2683..236a7e8 100644 --- a/cmake/system.cmake +++ b/cmake/system.cmake @@ -387,6 +387,9 @@ if (NOT NO_LAPACK) if (NOT NO_LAPACKE) set(LIB_COMPONENTS "${LIB_COMPONENTS} LAPACKE") endif () + if (BUILD_RELAPACK) + set(LIB_COMPONENTS "${LIB_COMPONENTS} ReLAPACK") + endif () endif () if (ONLY_CBLAS)