Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
259108ea
Commit
259108ea
authored
11 years ago
by
Innocent Niyonzima
Browse files
Options
Downloads
Patches
Plain Diff
find all mumps libs
parent
af87cd8d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CMakeLists.txt
+10
-2
10 additions, 2 deletions
CMakeLists.txt
with
10 additions
and
2 deletions
CMakeLists.txt
+
10
−
2
View file @
259108ea
...
@@ -843,17 +843,25 @@ if(HAVE_SOLVER)
...
@@ -843,17 +843,25 @@ if(HAVE_SOLVER)
endif
(
ENABLE_TAUCS
)
endif
(
ENABLE_TAUCS
)
if
(
ENABLE_MUMPS
)
if
(
ENABLE_MUMPS
)
find_library
(
DMUMPS_LIB smumps PATH_SUFFIXES lib
)
find_library
(
DMUMPS_LIB dmumps PATH_SUFFIXES lib
)
find_library
(
DMUMPS_LIB dmumps PATH_SUFFIXES lib
)
find_library
(
ZMUMPS_LIB cmumps PATH_SUFFIXES lib
)
find_library
(
ZMUMPS_LIB zmumps PATH_SUFFIXES lib
)
find_library
(
ZMUMPS_LIB zmumps PATH_SUFFIXES lib
)
find_path
(
DMUMPS_INC
"smumps_c.h"
PATH_SUFFIXES src include
)
find_path
(
DMUMPS_INC
"dmumps_c.h"
PATH_SUFFIXES src include
)
find_path
(
DMUMPS_INC
"dmumps_c.h"
PATH_SUFFIXES src include
)
find_path
(
ZMUMPS_INC
"cmumps_c.h"
PATH_SUFFIXES src include
)
find_path
(
ZMUMPS_INC
"zmumps_c.h"
PATH_SUFFIXES src include
)
find_path
(
ZMUMPS_INC
"zmumps_c.h"
PATH_SUFFIXES src include
)
if
(
DMUMPS_LIB AND DMUMPS_INC AND ZMUMPS_LIB AND ZMUMPS_INC
)
if
(
SMUMPS_LIB AND SMUMPS_INC AND
DMUMPS_LIB AND DMUMPS_INC AND
CMUMPS_LIB AND CMUMPS_INC AND
ZMUMPS_LIB AND ZMUMPS_INC
)
set_config_option
(
HAVE_MUMPS
"MUMPS"
)
set_config_option
(
HAVE_MUMPS
"MUMPS"
)
add_definitions
(
-DGMM_USES_MUMPS
)
list
(
APPEND EXTERNAL_LIBRARIES
${
DMUMPS_LIB
}
)
list
(
APPEND EXTERNAL_LIBRARIES
${
DMUMPS_LIB
}
)
list
(
APPEND EXTERNAL_INCLUDES
${
DMUMPS_INC
}
)
list
(
APPEND EXTERNAL_INCLUDES
${
DMUMPS_INC
}
)
list
(
APPEND EXTERNAL_LIBRARIES
${
ZMUMPS_LIB
}
)
list
(
APPEND EXTERNAL_LIBRARIES
${
ZMUMPS_LIB
}
)
list
(
APPEND EXTERNAL_INCLUDES
${
ZMUMPS_INC
}
)
list
(
APPEND EXTERNAL_INCLUDES
${
ZMUMPS_INC
}
)
endif
(
DMUMPS_LIB AND DMUMPS_INC AND ZMUMPS_LIB AND ZMUMPS_INC
)
endif
(
DMUMPS_LIB AND DMUMPS_INC AND ZMUMPS_LIB AND ZMUMPS_INC
)
endif
(
ENABLE_MUMPS
)
endif
(
ENABLE_MUMPS
)
if
(
ENABLE_PETSC
)
if
(
ENABLE_PETSC
)
...
...
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