mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 03:33:50 +01:00
f2c7d449cc
for earlier commits, see TRIQS0.x repository.
39 lines
934 B
CMake
39 lines
934 B
CMake
# Copyright Olivier Parcollet 2010.
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (See accompanying file LICENSE_1_0.txt or copy at
|
|
# http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#
|
|
# This module looks for fftw.
|
|
# It sets up : GSL_INCLUDE_DIR, GSL_LIBRARIES
|
|
#
|
|
|
|
SET(TRIAL_PATHS
|
|
$ENV{GSL_ROOT}/include
|
|
${GSL_ROOT}/include
|
|
/usr/include
|
|
/usr/local/include
|
|
/opt/local/include
|
|
/sw/include
|
|
)
|
|
FIND_PATH(GSL_INCLUDE_DIR gsl/gsl_math.h ${TRIAL_PATHS} DOC "Include for GSL")
|
|
|
|
SET(TRIAL_LIBRARY_PATHS
|
|
/usr/lib
|
|
/usr/local/lib
|
|
/opt/local/lib
|
|
/sw/lib
|
|
$ENV{GSL_ROOT}/lib
|
|
${GSL_ROOT}/lib
|
|
)
|
|
|
|
SET(GSL_LIBRARIES "GSL_LIBRARIES-NOTFOUND" CACHE STRING "GSL library")
|
|
# Try to detect the lib
|
|
FIND_LIBRARY(GSL_LIBRARIES gsl ${TRIAL_LIBRARY_PATHS} DOC "GSL library")
|
|
|
|
mark_as_advanced(GSL_INCLUDE_DIR)
|
|
mark_as_advanced(GSL_LIBRARIES)
|
|
|
|
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GSL DEFAULT_MSG GSL_LIBRARIES GSL_INCLUDE_DIR)
|
|
|