Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Backofen, Rainer
amdis
Commits
2d97ce7a
Commit
2d97ce7a
authored
Oct 24, 2010
by
Naumann, Andreas
Browse files
removed cmake warnings
parent
7eeca48c
Changes
1
Hide whitespace changes
Inline
Side-by-side
AMDiS/AMDiSConfig.cmake.in
View file @
2d97ce7a
...
...
@@ -36,7 +36,7 @@ set(AMDiS_USE_FILE ${AMDiS_DIR}/AMDiSUse.cmake)
set(AMDiS_COMPILEFLAGS "@COMPILEFLAGS@")
message("find-components: ${AMDiS_FIND_COMPONENTS}")
if(
${
AMDiS_NEED_UMFPACK
}
)
if(AMDiS_NEED_UMFPACK)
set(BLAS_LIBRARY_DIR "" CACHE PATH "the blas library directory")
set(BLAS_LIBRARY "blas" CACHE STRING "the blas library")
find_library(_BLAS_LIB ${BLAS_LIBRARY} PATHS ${BLAS_LIBRARY_DIR})
...
...
@@ -51,10 +51,10 @@ if(${AMDiS_NEED_UMFPACK})
${AMDiS_INCLUDE_DIR}/ufconfig
${AMDiS_INCLUDE_DIR}/ufconfig/xerbla
)
endif(
${
AMDiS_NEED_UMFPACK
}
)
endif(AMDiS_NEED_UMFPACK)
if(${AMDiS_FIND_COMPONENTS} MATCHES umfpack )
if(
${
AMDiS_NEED_UMFPACK
}
)
if( AMDiS_NEED_UMFPACK )
list(APPEND AMDiS_LIBRARIES umfpack blas)
else()
set( AMDiS_umfpack_FOUND FALSE)
...
...
@@ -62,7 +62,7 @@ if(${AMDiS_FIND_COMPONENTS} MATCHES umfpack )
endif()
endif()
if(
${
AMDiS_NEED_PARMETIS
}
)
if( AMDiS_NEED_PARMETIS )
list(APPEND AMDiS_LIBRARIES parmetis metis)
endif()
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment