Skip to content

Instantly share code, notes, and snippets.

@awesomebytes
Created January 12, 2019 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awesomebytes/79bafc394be8389d6430393edf77be47 to your computer and use it in GitHub Desktop.
Save awesomebytes/79bafc394be8389d6430393edf77be47 to your computer and use it in GitHub Desktop.
From 60415f5e9f86c0e32a4c1d37eba731231ce2a980 Mon Sep 17 00:00:00 2001
From: Sammy Pfeiffer <Sammy.Pfeiffer@student.uts.edu.au>
Date: Sun, 13 Jan 2019 00:30:03 +1100
Subject: [PATCH] Hardcode blas found for debugging
---
CMakeLists.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2da0dcc..88fd877 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -123,6 +123,7 @@ ENDIF()
# For building the CHOLMOD / CSPARSE solvers
FIND_PACKAGE(Cholmod)
FIND_PACKAGE(BLAS)
+SET(BLAS_FOUND TRUE)
FIND_PACKAGE(LAPACK)
IF(CHOLMOD_FOUND AND BLAS_FOUND AND LAPACK_FOUND)
MESSAGE(STATUS "Found CHOLMOD and its dependencies")
--
2.7.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment