Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
morse_cmake
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Admin message
GitLab upgrade completed. Current version is 17.11.3.
Show more breadcrumbs
solverstack
morse_cmake
Merge requests
!52
Update FindEZTrace.cmake to link it with libmpi
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update FindEZTrace.cmake to link it with libmpi
tdelarue/morse_cmake:pastix_eztrace
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Tony Delarue
requested to merge
tdelarue/morse_cmake:pastix_eztrace
into
master
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
169c202b
1 commit,
4 years ago
1 file
+
15
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
modules/find/FindEZTRACE.cmake
+
15
−
7
Options
@@ -98,23 +98,31 @@ if (PKG_CONFIG_EXECUTABLE)
if
(
EZTRACE_FOUND AND EZTRACE_LIBRARIES
)
# Set include dirs and libraries absolute path.
if
(
NOT EZTRACE_INCLUDE_DIRS
)
pkg_get_variable
(
EZTRACE_INCLUDE_DIRS eztrace includedir
)
endif
()
# We have found EZTrace, now we look for the components.
if
(
EZTRACE_LOOK_FOR_MPI
)
morse_find_library
(
EZTRACE_MPI
LIBRARIES eztrace-mpi
SUFFIXES lib lib32 lib64
)
LIBRARIES eztrace-mpi
SUFFIXES lib lib32 lib64
)
if
(
EZTRACE_MPI_LIBRARIES
)
message
(
STATUS
"Looking for EZTRACE-MPI - found"
)
else
()
message
(
STATUS
"
${
Magenta
}
Looking for EZTRACE-MPI - not found.
${
ColourReset
}
"
)
endif
()
list
(
APPEND EZTRACE_LIBRARIES
"
${
EZTRACE_MPI_LIBRARIES
}
"
)
list
(
APPEND EZTRACE_LIBRARIES
${
EZTRACE_MPI_LIBRARIES
}
)
if
(
MPI_FOUND
)
if
(
MPI_C_INCLUDE_PATH
)
list
(
APPEND EZTRACE_INCLUDE_DIRS
${
MPI_C_INCLUDE_PATH
}
)
endif
()
list
(
APPEND EZTRACE_LIBRARIES
${
MPI_C_LIBRARIES
}
)
endif
()
endif
(
EZTRACE_LOOK_FOR_MPI
)
# Set include dirs and libraries absolute path.
if
(
NOT EZTRACE_INCLUDE_DIRS
)
pkg_get_variable
(
EZTRACE_INCLUDE_DIRS eztrace includedir
)
endif
()
set
(
EZTRACE_FOUND_WITH_PKGCONFIG
"TRUE"
)
morse_find_pkgconfig_libraries_absolute_path
(
EZTRACE
)
else
()
Loading