From bac6955068e1d03d5b5e49b68521989ed1850e43 Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Thu, 17 Sep 2015 09:57:15 +0200 Subject: [PATCH] rename --- modules/cblas.cmake | 14 +++++++------- .../find_include_files.cmake} | 0 .../find_libraries.cmake} | 0 3 files changed, 7 insertions(+), 7 deletions(-) rename modules/{detect/detect_include_files.cmake => find/find_include_files.cmake} (100%) rename modules/{detect/detect_libraries.cmake => find/find_libraries.cmake} (100%) diff --git a/modules/cblas.cmake b/modules/cblas.cmake index 05d9804..25e317e 100644 --- a/modules/cblas.cmake +++ b/modules/cblas.cmake @@ -1,6 +1,6 @@ #.rst: # -# Detect and link to CBLAS. +# Find and link to CBLAS. # # Variables used:: # @@ -14,16 +14,16 @@ # # 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'] -# fetch: https://github.com/scisoft/autocmake/raw/master/modules/detect/detect_libraries.cmake -# https://github.com/scisoft/autocmake/raw/master/modules/detect/detect_include_files.cmake +# fetch: https://github.com/scisoft/autocmake/raw/master/modules/find/find_libraries.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) - include(detect_libraries) - include(detect_include_files) + include(find_libraries) + include(find_include_files) set(CBLAS_FOUND FALSE) set(CBLAS_LIBRARIES "undefined") diff --git a/modules/detect/detect_include_files.cmake b/modules/find/find_include_files.cmake similarity index 100% rename from modules/detect/detect_include_files.cmake rename to modules/find/find_include_files.cmake diff --git a/modules/detect/detect_libraries.cmake b/modules/find/find_libraries.cmake similarity index 100% rename from modules/detect/detect_libraries.cmake rename to modules/find/find_libraries.cmake