Skip to content
Snippets Groups Projects
Commit 4f941295 authored by Markus Blatt's avatar Markus Blatt
Browse files

[Merge][CMake] Merged revisions : 1696

Revision  r1696
.----------------------
[FindSuperLU.cmake]
Add missing include.
Improve library search.

.----------------------


[[Imported from SVN: r1839]]
parents 1af1de73 b1031883
No related branches found
No related tags found
No related merge requests found
......@@ -30,15 +30,23 @@ find_path(SUPERLU_INCLUDE_DIR
PATH_SUFFIXES "superlu" "include/superlu" "include" "SRC"
)
# look for library
# look for library, only at positions given by the user
find_library(SUPERLU_LIBRARY
NAMES "superlu_4.3" "superlu_4.2" "superlu_4.1" "superlu_4.0" "superlu_3.1" "superlu_3.0" "superlu"
PATHS ${SUPERLU_DIR}
PATH_SUFFIXES "lib" "lib32" "lib64"
NO_DEFAULT_PATH
)
# look for library files, including default paths
find_library(SUPERLU_LIBRARY
NAMES "superlu_4.3" "superlu_4.2" "superlu_4.1" "superlu_4.0" "superlu_3.1" "superlu_3.0" "superlu"
HINTS ${SUPERLU_DIR}
PATH_SUFFIXES "lib" "lib32" "lib64"
)
# check version specific macros
include(CheckCSourceCompiles)
include(CMakePushCheckState)
cmake_push_check_state()
set(CMAKE_REQUIRED_INCLUDES ${SUPERLU_INCLUDE_DIR})
set(CMAKE_REQUIRED_LIBRARIES ${SUPERLU_LIBRARY})
......
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