Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
CoMISo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
CoMISo
CoMISo
Commits
56c2b13f
Commit
56c2b13f
authored
Oct 19, 2018
by
Max Lyon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do not try to find lapack if suitesparse is already found
parent
9293145f
Pipeline
#7645
passed with stages
in 7 minutes and 16 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
CMakeLists.txt
CMakeLists.txt
+3
-3
No files found.
CMakeLists.txt
View file @
56c2b13f
...
...
@@ -331,8 +331,8 @@ else ()
endif
()
set
(
TMP_CMAKE_FIND_LIBRARY_PREFIXES
"
${
CMAKE_FIND_LIBRARY_PREFIXES
}
"
)
set
(
CMAKE_FIND_LIBRARY_PREFIXES lib
""
)
#Our
blas librariy is called libblas
.lib. Is there a better way to find it than this?
if
(
NEED_LAPACK
)
set
(
CMAKE_FIND_LIBRARY_PREFIXES lib
""
)
#Our
lapack library is called liblapack
.lib. Is there a better way to find it than this?
if
(
NEED_LAPACK
AND NOT SUITESPARSE_FOUND
)
FIND_PACKAGE
(
LAPACK
)
if
(
LAPACK_FOUND
)
list
(
APPEND COMISO_INCLUDE_DIRECTORIES
${
LAPACK_INCLUDE_DIR
}
)
...
...
@@ -341,7 +341,7 @@ if (NEED_LAPACK)
else
()
message
(
STATUS
"LAPACK not found!"
)
endif
()
endif
(
NEED_LAPACK
)
endif
(
NEED_LAPACK
AND NOT SUITESPARSE_FOUND
)
set
(
CMAKE_FIND_LIBRARY_PREFIXES
"
${
TMP_CMAKE_FIND_LIBRARY_PREFIXES
}
"
)
include_directories
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment