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
S
ScalFMM
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
solverstack
ScalFMM
Commits
d1d24fac
Commit
d1d24fac
authored
Jun 16, 2015
by
Florent Pruvost
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add a suffix to look for (pt)scotch headers in the system
parent
495e7058
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
12 deletions
+18
-12
CMakeModules/morse/find/FindBLAS.cmake
CMakeModules/morse/find/FindBLAS.cmake
+14
-10
CMakeModules/morse/find/FindPTSCOTCH.cmake
CMakeModules/morse/find/FindPTSCOTCH.cmake
+2
-1
CMakeModules/morse/find/FindSCOTCH.cmake
CMakeModules/morse/find/FindSCOTCH.cmake
+2
-1
No files found.
CMakeModules/morse/find/FindBLAS.cmake
View file @
d1d24fac
...
...
@@ -1028,16 +1028,20 @@ endif (BLA_VENDOR STREQUAL "NAS" OR BLA_VENDOR STREQUAL "All")
# Generic BLAS library?
if
(
BLA_VENDOR STREQUAL
"Generic"
OR BLA_VENDOR STREQUAL
"All"
)
if
(
NOT BLAS_LIBRARIES
)
set
(
BLAS_SEARCH_LIBS
"blas;blas_LINUX;blas_MAC;blas_WINDOWS"
)
foreach
(
SEARCH_LIB
${
BLAS_SEARCH_LIBS
}
)
if
(
BLAS_LIBRARIES
)
else
()
check_fortran_libraries
(
BLAS_LIBRARIES
BLAS
sgemm
""
"blas
"
"
${
SEARCH_LIB
}
"
""
)
endif
()
endforeach
()
endif
(
BLA_VENDOR STREQUAL
"Generic"
OR BLA_VENDOR STREQUAL
"All"
)
...
...
CMakeModules/morse/find/FindPTSCOTCH.cmake
View file @
d1d24fac
...
...
@@ -132,7 +132,8 @@ else()
set
(
PTSCOTCH_ptscotch.h_DIRS
"PTSCOTCH_ptscotch.h_DIRS-NOTFOUND"
)
find_path
(
PTSCOTCH_ptscotch.h_DIRS
NAMES ptscotch.h
HINTS
${
_inc_env
}
)
HINTS
${
_inc_env
}
PATH_SUFFIXES
"scotch"
)
endif
()
endif
()
mark_as_advanced
(
PTSCOTCH_ptscotch.h_DIRS
)
...
...
CMakeModules/morse/find/FindSCOTCH.cmake
View file @
d1d24fac
...
...
@@ -115,7 +115,8 @@ else()
set
(
SCOTCH_scotch.h_DIRS
"SCOTCH_scotch.h_DIRS-NOTFOUND"
)
find_path
(
SCOTCH_scotch.h_DIRS
NAMES scotch.h
HINTS
${
_inc_env
}
)
HINTS
${
_inc_env
}
PATH_SUFFIXES
"scotch"
)
endif
()
endif
()
mark_as_advanced
(
SCOTCH_scotch.h_DIRS
)
...
...
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