rename
This commit is contained in:
parent
97e686b6be
commit
bac6955068
@ -1,6 +1,6 @@
|
|||||||
#.rst:
|
#.rst:
|
||||||
#
|
#
|
||||||
# Detect and link to CBLAS.
|
# Find and link to CBLAS.
|
||||||
#
|
#
|
||||||
# Variables used::
|
# Variables used::
|
||||||
#
|
#
|
||||||
@ -14,16 +14,16 @@
|
|||||||
#
|
#
|
||||||
# autocmake.cfg configuration::
|
# autocmake.cfg configuration::
|
||||||
#
|
#
|
||||||
# docopt: --cblas Detect and link to CBLAS [default: False].
|
# docopt: --cblas Find and link to CBLAS [default: False].
|
||||||
# define: '-DENABLE_CBLAS=%s' % arguments['--cblas']
|
# define: '-DENABLE_CBLAS=%s' % arguments['--cblas']
|
||||||
# fetch: https://github.com/scisoft/autocmake/raw/master/modules/detect/detect_libraries.cmake
|
# fetch: https://github.com/scisoft/autocmake/raw/master/modules/find/find_libraries.cmake
|
||||||
# https://github.com/scisoft/autocmake/raw/master/modules/detect/detect_include_files.cmake
|
# https://github.com/scisoft/autocmake/raw/master/modules/find/find_include_files.cmake
|
||||||
|
|
||||||
option(ENABLE_CBLAS "Detect and link to CBLAS" OFF)
|
option(ENABLE_CBLAS "Find and link to CBLAS" OFF)
|
||||||
|
|
||||||
if(ENABLE_CBLAS)
|
if(ENABLE_CBLAS)
|
||||||
include(detect_libraries)
|
include(find_libraries)
|
||||||
include(detect_include_files)
|
include(find_include_files)
|
||||||
|
|
||||||
set(CBLAS_FOUND FALSE)
|
set(CBLAS_FOUND FALSE)
|
||||||
set(CBLAS_LIBRARIES "undefined")
|
set(CBLAS_LIBRARIES "undefined")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user