cosmetics

This commit is contained in:
Radovan Bast 2015-09-17 01:36:51 +02:00
parent 2614ce9cf2
commit 02838aef07

View File

@ -1,6 +1,6 @@
#.rst: #.rst:
# #
# Detect and link to CBLAS. Work in progress. # Detect and link to CBLAS.
# #
# Variables used:: # Variables used::
# #
@ -16,13 +16,12 @@
# #
# docopt: --cblas Detect and link to CBLAS [default: False]. # docopt: --cblas Detect and link to CBLAS [default: False].
# define: '-DENABLE_CBLAS=%s' % arguments['--cblas'] # define: '-DENABLE_CBLAS=%s' % arguments['--cblas']
# fetch: https://raw.githubusercontent.com/scisoft/autocmake/master/modules/detect/detect_libraries.cmake # fetch: https://github.com/scisoft/autocmake/raw/master/modules/detect/detect_libraries.cmake
# https://raw.githubusercontent.com/scisoft/autocmake/master/modules/detect/detect_include_files.cmake # https://github.com/scisoft/autocmake/raw/master/modules/detect/detect_include_files.cmake
option(ENABLE_CBLAS "Detect and link to CBLAS" OFF) option(ENABLE_CBLAS "Detect and link to CBLAS" OFF)
if(ENABLE_CBLAS) if(ENABLE_CBLAS)
include(detect_libraries) include(detect_libraries)
include(detect_include_files) include(detect_include_files)