Skip to content
Snippets Groups Projects
Commit 8ccd2a85 authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

CMake: improve SuperLU testing. Reviewed by Christoph.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@8206 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent b36c7100
No related branches found
No related tags found
No related merge requests found
......@@ -40,10 +40,6 @@ find_package(UG)
find_package(ALUGrid)
find_package(METIS)
find_package(SuperLU)
if(SUPERLU_FOUND)
set(SUPERLU_CPPFLAGS "-I${SUPERLU_INCLUDE_DIRS} -DENABLE_SUPERLU")
set(SUPERLU_LIBS "-L. ${SUPERLU_LIBRARIES} ${BLAS_LIBRARIES}")
endif(SUPERLU_FOUND)
##############
# Find the required include files
......
......@@ -27,6 +27,8 @@ int main(void)
return SLU_DOUBLE;
}"
SUPERLU_MIN_VERSION_4_3)
set(CMAKE_REQUIRED_INCLUDES "")
set(CMAKE_REQUIRED_LIBRARIES "")
if(SUPERLU_MIN_VERSION_4_3)
set(SUPERLU_WITH_VERSION "SuperLU >= 4.3")
......@@ -54,6 +56,8 @@ if(SUPERLU_FOUND)
"Determing location of ${SUPERLU_WITH_VERSION} succeded:\n"
"Include directory: ${SUPERLU_INCLUDE_DIR}\n"
"Library directory: ${SUPERLU_LIBRARY}\n\n")
set(SUPERLU_CPPFLAGS "-I${SUPERLU_INCLUDE_DIRS} -DENABLE_SUPERLU")
set(SUPERLU_LIBS "-L. ${SUPERLU_LIBRARIES} ${BLAS_LIBRARIES}")
else(SUPERLU_FOUND)
# log errornous result
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment