-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from milk-org/dev-no-lapacke
Remove lapacke library from cacao plugin
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
diff --git a/computeCalib/CMakeLists.txt b/computeCalib/CMakeLists.txt | ||
index 15b1646b..6a07c81f 100644 | ||
--- a/computeCalib/CMakeLists.txt | ||
+++ b/computeCalib/CMakeLists.txt | ||
@@ -44,8 +44,10 @@ set(LINKLIBS | ||
CLIcore | ||
milkinfo | ||
cacaoAOloopControl | ||
- lapacke | ||
) | ||
+if(NOT MKL_FOUND) | ||
+ list(APPEND LINKLIBS lapacke) | ||
+endif() | ||
|
||
|
||
|