From 11cd9bfc1abf9d80e1001874908ed6b6f706540c Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Fri, 22 May 2015 15:49:46 +0200 Subject: [PATCH] renames --- README.md | 12 ++++++------ modules/UseBuildInfo.cmake | 2 +- modules/UseMathLibs.cmake | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 38c017a..7d667fe 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A CMake plugin composer. ## Bootstrapping a new project -Bootstrap a CFrame infrastructure out of "nothing": +Bootstrap a Autocmake infrastructure out of "nothing": mkdir cmake # does not have to be called "cmake" - take the name you prefer cd cmake @@ -15,7 +15,7 @@ This downloads and creates the following files: cmake/ ├── bootstrap.py # no need to edit - ├── cframe.cfg # edit this file + ├── autocmake.cfg # edit this file └── lib/ ├── config.py # no need to edit └── docopt.py # no need to edit @@ -25,17 +25,17 @@ the newly created files. ## Creating the CMake infrastructure -Then edit ``cframe.cfg`` and run the ``bootstrap.py`` script which +Then edit ``autocmake.cfg`` and run the ``bootstrap.py`` script which creates ``CMakeLists.txt`` and ``setup.py`` in the path specified (here ".."): python bootstrap.py .. -The script also copies or downloads CMake modules specified in ``cframe.cfg`` to a directory +The script also copies or downloads CMake modules specified in ``autocmake.cfg`` to a directory called ``modules/``: cmake/ ├── bootstrap.py - ├── cframe.cfg + ├── autocmake.cfg └── lib/ ├── config.py └── docopt.py @@ -57,4 +57,4 @@ not very convenient as the customizations may be overwritten by the A better solution is to download the CMake modules that you wish you customize to a separate directory and source the customized CMake modules in -``cframe.cfg``. +``autocmake.cfg``. diff --git a/modules/UseBuildInfo.cmake b/modules/UseBuildInfo.cmake index 7896acc..8e8abba 100644 --- a/modules/UseBuildInfo.cmake +++ b/modules/UseBuildInfo.cmake @@ -1,5 +1,5 @@ # Copyright (c) 2015 by Radovan Bast and Jonas Juselius -# see https://github.com/scisoft/cframe/blob/master/LICENSE +# see https://github.com/scisoft/autocmake/blob/master/LICENSE #------------------------------------------------------------------------------- diff --git a/modules/UseMathLibs.cmake b/modules/UseMathLibs.cmake index 53f3e3b..78cbcb7 100644 --- a/modules/UseMathLibs.cmake +++ b/modules/UseMathLibs.cmake @@ -1,6 +1,6 @@ # Copyright (c) 2015 by Radovan Bast and Jonas Juselius -# see https://github.com/scisoft/cframe/blob/master/LICENSE +# see https://github.com/scisoft/autocmake/blob/master/LICENSE # CMake variables used: # - MATH_LIB_SEARCH_ORDER, example: set(MATH_LIB_SEARCH_ORDER MKL ESSL ATLAS ACML SYSTEM_NATIVE)