Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-istl
Commits
d41cf2f4
Commit
d41cf2f4
authored
12 years ago
by
Christoph Grüninger
Browse files
Options
Downloads
Patches
Plain Diff
[CMake] Now the superlu library names are more platform independant.
[[Imported from SVN: r1604]]
parent
a6b41b13
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmake/modules/FindSuperLU.cmake
+2
-2
2 additions, 2 deletions
cmake/modules/FindSuperLU.cmake
with
2 additions
and
2 deletions
cmake/modules/FindSuperLU.cmake
+
2
−
2
View file @
d41cf2f4
...
...
@@ -24,7 +24,7 @@ find_path(SUPERLU_INCLUDE_DIR
# look for library
find_library
(
SUPERLU_LIBRARY
NAMES
"
lib
superlu
.a
"
"
lib
superlu_4.3
.a
"
"
lib
superlu_4.2
.a
"
"
lib
superlu_4.1
.a
"
"
lib
superlu_4.0
.a
"
"
lib
superlu_3.1
.a
"
"
lib
superlu_3.0
.a
"
NAMES
"superlu"
"superlu_4.3"
"superlu_4.2"
"superlu_4.1"
"superlu_4.0"
"superlu_3.1"
"superlu_3.0"
PATH_SUFFIXES
"lib"
"lib64"
)
...
...
@@ -57,7 +57,7 @@ find_package_handle_standard_args(
SUPERLU_LIBRARY
)
mark_as_advanced
(
SUPERLU_INCLUDE_DIRS SUPERLU_LIBRARIES
)
mark_as_advanced
(
SUPERLU_INCLUDE_DIRS SUPERLU_LIBRARIES
SUPERLU_MIN_VERSION_4_3
)
# if both headers and library are found, store results
if
(
SUPERLU_FOUND
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment