查找GSL¶
在版本 3.2 中添加。
查找原生 GNU 科学计算库 (GSL) 的包含文件和库。
GNU 科学计算库 (GSL) 是一个为 C 和 C++ 程序员提供的数值库。它是基于 GNU 通用公共许可证的自由软件。
导入目标¶
如果找到 GSL,此模块定义以下 IMPORTED
目标
GSL::gsl - The main GSL library.
GSL::gslcblas - The CBLAS support library used by GSL.
结果变量¶
此模块将在您的项目中设置以下变量
GSL_FOUND - True if GSL found on the local system
GSL_INCLUDE_DIRS - Location of GSL header files.
GSL_LIBRARIES - The GSL libraries.
GSL_VERSION - The version of the discovered GSL install.
提示¶
设置 GSL_ROOT_DIR
为包含 GSL 安装的目录。
此脚本期望在 $GSL_ROOT_DIR/lib
找到库,并在 $GSL_ROOT_DIR/include/gsl
找到 GSL 头文件。库目录可以选择性地提供 Release 和 Debug 文件夹。如果可用,名为 gsld
, gslblasd
或 cblasd
的库将被识别为调试库。对于类 Unix 系统,此脚本将使用 $GSL_ROOT_DIR/bin/gsl-config
(如果找到) 来辅助发现 GSL。
缓存变量¶
此模块可能会根据平台和发现的 GSL 安装类型设置以下变量。这些变量可以选择性地设置,以帮助此模块找到正确的文件
GSL_CBLAS_LIBRARY - Location of the GSL CBLAS library.
GSL_CBLAS_LIBRARY_DEBUG - Location of the debug GSL CBLAS library (if any).
GSL_CONFIG_EXECUTABLE - Location of the ``gsl-config`` script (if any).
GSL_LIBRARY - Location of the GSL library.
GSL_LIBRARY_DEBUG - Location of the debug GSL library (if any).