FindGSL.cmake 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. #.rst:
  2. # FindGSL
  3. # --------
  4. #
  5. # Find the native GSL includes and libraries.
  6. #
  7. # The GNU Scientific Library (GSL) is a numerical library for C and C++
  8. # programmers. It is free software under the GNU General Public
  9. # License.
  10. #
  11. # Imported Targets
  12. # ^^^^^^^^^^^^^^^^
  13. #
  14. # If GSL is found, this module defines the following :prop_tgt:`IMPORTED`
  15. # targets::
  16. #
  17. # GSL::gsl - The main GSL library.
  18. # GSL::gslcblas - The CBLAS support library used by GSL.
  19. #
  20. # Result Variables
  21. # ^^^^^^^^^^^^^^^^
  22. #
  23. # This module will set the following variables in your project::
  24. #
  25. # GSL_FOUND - True if GSL found on the local system
  26. # GSL_INCLUDE_DIRS - Location of GSL header files.
  27. # GSL_LIBRARIES - The GSL libraries.
  28. # GSL_VERSION - The version of the discovered GSL install.
  29. #
  30. # Hints
  31. # ^^^^^
  32. #
  33. # Set ``GSL_ROOT_DIR`` to a directory that contains a GSL installation.
  34. #
  35. # This script expects to find libraries at ``$GSL_ROOT_DIR/lib`` and the GSL
  36. # headers at ``$GSL_ROOT_DIR/include/gsl``. The library directory may
  37. # optionally provide Release and Debug folders. For Unix-like systems, this
  38. # script will use ``$GSL_ROOT_DIR/bin/gsl-config`` (if found) to aid in the
  39. # discovery GSL.
  40. #
  41. # Cache Variables
  42. # ^^^^^^^^^^^^^^^
  43. #
  44. # This module may set the following variables depending on platform and type
  45. # of GSL installation discovered. These variables may optionally be set to
  46. # help this module find the correct files::
  47. #
  48. # GSL_CBLAS_LIBRARY - Location of the GSL CBLAS library.
  49. # GSL_CBLAS_LIBRARY_DEBUG - Location of the debug GSL CBLAS library (if any).
  50. # GSL_CONFIG_EXECUTABLE - Location of the ``gsl-config`` script (if any).
  51. # GSL_LIBRARY - Location of the GSL library.
  52. # GSL_LIBRARY_DEBUG - Location of the debug GSL library (if any).
  53. #
  54. #=============================================================================
  55. # Copyright 2014 Kelly Thompson <kgt@lanl.gov>
  56. #
  57. # Distributed under the OSI-approved BSD License (the "License");
  58. # see accompanying file Copyright.txt for details.
  59. #
  60. # This software is distributed WITHOUT ANY WARRANTY; without even the
  61. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  62. # See the License for more information.
  63. #=============================================================================
  64. # (To distribute this file outside of CMake, substitute the full
  65. # License text for the above reference.)
  66. # Include these modules to handle the QUIETLY and REQUIRED arguments.
  67. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  68. #=============================================================================
  69. # If the user has provided ``GSL_ROOT_DIR``, use it! Choose items found
  70. # at this location over system locations.
  71. if( EXISTS "$ENV{GSL_ROOT_DIR}" )
  72. file( TO_CMAKE_PATH "$ENV{GSL_ROOT_DIR}" GSL_ROOT_DIR )
  73. set( GSL_ROOT_DIR "${GSL_ROOT_DIR}" CACHE PATH "Prefix for GSL installation." )
  74. endif()
  75. if( NOT EXISTS "${GSL_ROOT_DIR}" )
  76. set( GSL_USE_PKGCONFIG ON )
  77. endif()
  78. #=============================================================================
  79. # As a first try, use the PkgConfig module. This will work on many
  80. # *NIX systems. See :module:`findpkgconfig`
  81. # This will return ``GSL_INCLUDEDIR`` and ``GSL_LIBDIR`` used below.
  82. if( GSL_USE_PKGCONFIG )
  83. find_package(PkgConfig)
  84. pkg_check_modules( GSL QUIET gsl )
  85. if( EXISTS "${GSL_INCLUDEDIR}" )
  86. get_filename_component( GSL_ROOT_DIR "${GSL_INCLUDEDIR}" DIRECTORY CACHE)
  87. endif()
  88. endif()
  89. #=============================================================================
  90. # Set GSL_INCLUDE_DIRS and GSL_LIBRARIES. If we skipped the PkgConfig step, try
  91. # to find the libraries at $GSL_ROOT_DIR (if provided) or in standard system
  92. # locations. These find_library and find_path calls will prefer custom
  93. # locations over standard locations (HINTS). If the requested file is not found
  94. # at the HINTS location, standard system locations will be still be searched
  95. # (/usr/lib64 (Redhat), lib/i386-linux-gnu (Debian)).
  96. find_path( GSL_INCLUDE_DIR
  97. NAMES gsl/gsl_sf.h
  98. HINTS ${GSL_ROOT_DIR}/include ${GSL_INCLUDEDIR}
  99. )
  100. find_library( GSL_LIBRARY
  101. NAMES gsl
  102. HINTS ${GSL_ROOT_DIR}/lib ${GSL_LIBDIR}
  103. PATH_SUFFIXES Release Debug
  104. )
  105. find_library( GSL_CBLAS_LIBRARY
  106. NAMES gslcblas cblas
  107. HINTS ${GSL_ROOT_DIR}/lib ${GSL_LIBDIR}
  108. PATH_SUFFIXES Release Debug
  109. )
  110. # Do we also have debug versions?
  111. find_library( GSL_LIBRARY_DEBUG
  112. NAMES gsl
  113. HINTS ${GSL_ROOT_DIR}/lib ${GSL_LIBDIR}
  114. PATH_SUFFIXES Debug
  115. )
  116. find_library( GSL_CBLAS_LIBRARY_DEBUG
  117. NAMES gslcblas cblas
  118. HINTS ${GSL_ROOT_DIR}/lib ${GSL_LIBDIR}
  119. PATH_SUFFIXES Debug
  120. )
  121. set( GSL_INCLUDE_DIRS ${GSL_INCLUDE_DIR} )
  122. set( GSL_LIBRARIES ${GSL_LIBRARY} ${GSL_CBLAS_LIBRARY} )
  123. # If we didn't use PkgConfig, try to find the version via gsl-config or by
  124. # reading gsl_version.h.
  125. if( NOT GSL_VERSION )
  126. # 1. If gsl-config exists, query for the version.
  127. find_program( GSL_CONFIG_EXECUTABLE
  128. NAMES gsl-config
  129. HINTS "${GSL_ROOT_DIR}/bin"
  130. )
  131. if( EXISTS "${GSL_CONFIG_EXECUTABLE}" )
  132. execute_process(
  133. COMMAND "${GSL_CONFIG_EXECUTABLE}" --version
  134. OUTPUT_VARIABLE GSL_VERSION
  135. OUTPUT_STRIP_TRAILING_WHITESPACE )
  136. endif()
  137. # 2. If gsl-config is not available, try looking in gsl/gsl_version.h
  138. if( NOT GSL_VERSION AND EXISTS "${GSL_INCLUDE_DIRS}/gsl/gsl_version.h" )
  139. file( STRINGS "${GSL_INCLUDE_DIRS}/gsl/gsl_version.h" gsl_version_h_contents REGEX "define GSL_VERSION" )
  140. string( REGEX REPLACE ".*([0-9].[0-9][0-9]).*" "\\1" GSL_VERSION ${gsl_version_h_contents} )
  141. endif()
  142. # might also try scraping the directory name for a regex match "gsl-X.X"
  143. endif()
  144. #=============================================================================
  145. # handle the QUIETLY and REQUIRED arguments and set GSL_FOUND to TRUE if all
  146. # listed variables are TRUE
  147. find_package_handle_standard_args( GSL
  148. FOUND_VAR
  149. GSL_FOUND
  150. REQUIRED_VARS
  151. GSL_INCLUDE_DIR
  152. GSL_LIBRARY
  153. GSL_CBLAS_LIBRARY
  154. VERSION_VAR
  155. GSL_VERSION
  156. )
  157. mark_as_advanced( GSL_ROOT_DIR GSL_VERSION GSL_LIBRARY GSL_INCLUDE_DIR
  158. GSL_CBLAS_LIBRARY GSL_LIBRARY_DEBUG GSL_CBLAS_LIBRARY_DEBUG
  159. GSL_USE_PKGCONFIG GSL_CONFIG )
  160. #=============================================================================
  161. # Register imported libraries:
  162. # 1. If we can find a Windows .dll file (or if we can find both Debug and
  163. # Release libraries), we will set appropriate target properties for these.
  164. # 2. However, for most systems, we will only register the import location and
  165. # include directory.
  166. # Look for dlls, or Release and Debug libraries.
  167. if(WIN32)
  168. string( REPLACE ".lib" ".dll" GSL_LIBRARY_DLL "${GSL_LIBRARY}" )
  169. string( REPLACE ".lib" ".dll" GSL_CBLAS_LIBRARY_DLL "${GSL_CBLAS_LIBRARY}" )
  170. string( REPLACE ".lib" ".dll" GSL_LIBRARY_DEBUG_DLL "${GSL_LIBRARY_DEBUG}" )
  171. string( REPLACE ".lib" ".dll" GSL_CBLAS_LIBRARY_DEBUG_DLL "${GSL_CBLAS_LIBRARY_DEBUG}" )
  172. endif()
  173. if( GSL_FOUND AND NOT TARGET GSL::gsl )
  174. if( EXISTS "${GSL_LIBRARY_DLL}" AND EXISTS "${GSL_CBLAS_LIBRARY_DLL}")
  175. # Windows systems with dll libraries.
  176. add_library( GSL::gsl SHARED IMPORTED )
  177. add_library( GSL::gslcblas SHARED IMPORTED )
  178. # Windows with dlls, but only Release libraries.
  179. set_target_properties( GSL::gslcblas PROPERTIES
  180. IMPORTED_LOCATION_RELEASE "${GSL_CBLAS_LIBRARY_DLL}"
  181. IMPORTED_IMPLIB "${GSL_CBLAS_LIBRARY}"
  182. INTERFACE_INCLUDE_DIRECTORIES "${GSL_INCLUDE_DIRS}"
  183. IMPORTED_CONFIGURATIONS Release
  184. IMPORTED_LINK_INTERFACE_LANGUAGES "C" )
  185. set_target_properties( GSL::gsl PROPERTIES
  186. IMPORTED_LOCATION_RELEASE "${GSL_LIBRARY_DLL}"
  187. IMPORTED_IMPLIB "${GSL_LIBRARY}"
  188. INTERFACE_INCLUDE_DIRECTORIES "${GSL_INCLUDE_DIRS}"
  189. IMPORTED_CONFIGURATIONS Release
  190. IMPORTED_LINK_INTERFACE_LANGUAGES "C"
  191. INTERFACE_LINK_LIBRARIES GSL::gslcblas )
  192. # If we have both Debug and Release libraries
  193. if( EXISTS "${GSL_LIBRARY_DEBUG_DLL}" AND EXISTS "${GSL_CBLAS_LIBRARY_DEBUG_DLL}")
  194. set_property( TARGET GSL::gslcblas APPEND PROPERTY IMPORTED_CONFIGURATIONS Debug )
  195. set_target_properties( GSL::gslcblas PROPERTIES
  196. IMPORTED_LOCATION_DEBUG "${GSL_CBLAS_LIBRARY_DEBUG_DLL}"
  197. IMPORTED_IMPLIB_DEBUG "${GSL_CBLAS_LIBRARY_DEBUG}" )
  198. set_property( TARGET GSL::gsl APPEND PROPERTY IMPORTED_CONFIGURATIONS Debug )
  199. set_target_properties( GSL::gsl PROPERTIES
  200. IMPORTED_LOCATION_DEBUG "${GSL_LIBRARY_DEBUG_DLL}"
  201. IMPORTED_IMPLIB_DEBUG "${GSL_LIBRARY_DEBUG}" )
  202. endif()
  203. else()
  204. # For all other environments (ones without dll libraries), create
  205. # the imported library targets.
  206. add_library( GSL::gsl UNKNOWN IMPORTED )
  207. add_library( GSL::gslcblas UNKNOWN IMPORTED )
  208. set_target_properties( GSL::gslcblas PROPERTIES
  209. IMPORTED_LOCATION "${GSL_CBLAS_LIBRARY}"
  210. INTERFACE_INCLUDE_DIRECTORIES "${GSL_INCLUDE_DIRS}"
  211. IMPORTED_LINK_INTERFACE_LANGUAGES "C" )
  212. set_target_properties( GSL::gsl PROPERTIES
  213. IMPORTED_LOCATION "${GSL_LIBRARY}"
  214. INTERFACE_INCLUDE_DIRECTORIES "${GSL_INCLUDE_DIRS}"
  215. IMPORTED_LINK_INTERFACE_LANGUAGES "C"
  216. INTERFACE_LINK_LIBRARIES GSL::gslcblas )
  217. endif()
  218. endif()