From ce8b054cdbd0d84f155bf334591d1c798ed3f970 Mon Sep 17 00:00:00 2001 From: Izaak Beekman Date: Mon, 21 Jan 2019 19:03:47 -0500 Subject: [PATCH] Attempt static linking of BLAS --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 036c0f19c..3cbdd82c4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -280,7 +280,7 @@ endif() #------------------------------ # Find Linear Algebra Libraries #------------------------------ -#set(BLA_STATIC 1) +set(BLA_STATIC ON) find_package(BLAS REQUIRED) find_package(LAPACK REQUIRED) add_definitions(-DHAVE_LAPACK)