Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
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
Package registry
Model registry
Operate
Environments
Terraform modules
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-common
Commits
65282a53
Commit
65282a53
authored
9 years ago
by
Christoph Grüninger
Browse files
Options
Downloads
Patches
Plain Diff
[CMake] Ensure SuiteSparse_*_FOUND and HAVE_SUITESPARSE_* are defined
parent
40046f29
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!8
Feature/fs1702 cmake add suitesparse support rebased
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmake/modules/FindSuiteSparse.cmake
+3
-3
3 additions, 3 deletions
cmake/modules/FindSuiteSparse.cmake
with
3 additions
and
3 deletions
cmake/modules/FindSuiteSparse.cmake
+
3
−
3
View file @
65282a53
...
...
@@ -164,9 +164,9 @@ endif()
# check wether everything was found
foreach
(
_component
${
SUITESPARSE_COMPONENTS
}
)
# variable used for component handling
if
(
${
_component
}
_LIBRARY AND
${
_component
}
_INCLUDE_DIR
)
set
(
SuiteSparse_
${
_component
}
_FOUND
TRUE
)
set
(
HAVE_SUITESPARSE
_
${
_component
}
TRUE
)
set
(
SuiteSparse_
${
_component
}
_FOUND
(
${
_component
}
_LIBRARY AND
${
_component
}
_INCLUDE_DIR
)
)
set
(
HAVE_SUITESPARSE_
${
_component
}
SuiteSparse_
${
_component
}
_FOUND
)
if
(
SuiteSparse
_
${
_component
}
_FOUND
)
list
(
APPEND SUITESPARSE_INCLUDE_DIR
"
${${
_component
}
_INCLUDE_DIR
}
"
)
list
(
APPEND SUITESPARSE_LIBRARY
"
${${
_component
}
_LIBRARY
}
"
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
Christoph Grüninger
@gruenich
mentioned in commit
9246a5fa
·
9 years ago
mentioned in commit
9246a5fa
mentioned in commit 9246a5fa15b98a6cf440ae98142f96b706b0d0b0
Toggle commit list
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