From d26389b0a10542c10b3cbccbb3e132101440c544 Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Fri, 20 May 2016 11:17:59 +0200 Subject: [PATCH 1/5] s/master/stable-0.x/ --- README.md | 6 ++-- doc/contributors/doc.rst | 4 +-- doc/contributors/testing.rst | 2 +- doc/developers/bootstrap.rst | 4 +-- doc/developers/configuration.rst | 42 +++++++++++++------------- doc/developers/customizing-modules.rst | 4 +-- doc/developers/example.rst | 8 ++--- doc/developers/faq.rst | 2 +- doc/developers/updating-modules.rst | 2 +- doc/extract_rst.py | 2 +- modules/boost/boost.cmake | 16 +++++----- modules/git_info/git_info.cmake | 4 +-- modules/math/accelerate.cmake | 4 +-- modules/math/cblas.cmake | 4 +-- modules/math/lapacke.cmake | 4 +-- update.py | 8 ++--- 16 files changed, 58 insertions(+), 58 deletions(-) diff --git a/README.md b/README.md index c782e2c..b0f128e 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -[![Build Status](https://travis-ci.org/coderefinery/autocmake.svg?branch=master)](https://travis-ci.org/coderefinery/autocmake/builds) +[![Build Status](https://travis-ci.org/coderefinery/autocmake.svg?branch=stable-0.x)](https://travis-ci.org/coderefinery/autocmake/builds) [![Documentation Status](https://readthedocs.org/projects/autocmake/badge/?version=latest)](http://autocmake.readthedocs.org) -[![License](https://img.shields.io/badge/license-%20BSD--3-blue.svg)](../master/LICENSE) +[![License](https://img.shields.io/badge/license-%20BSD--3-blue.svg)](../stable-0.x/LICENSE) # Autocmake A CMake plugin composer. -Licensed under [BSD-3](../master/LICENSE). +Licensed under [BSD-3](../stable-0.x/LICENSE). See http://autocmake.org. diff --git a/doc/contributors/doc.rst b/doc/contributors/doc.rst index 4e7eaeb..fbf2329 100644 --- a/doc/contributors/doc.rst +++ b/doc/contributors/doc.rst @@ -10,11 +10,11 @@ This documentation is refreshed upon each push to the central repository. The module reference documentation is generated from the module sources using ``#.rst:`` tags (compare for instance http://autocmake.readthedocs.org/en/latest/module-reference.html#cc-cmake with -https://github.com/coderefinery/autocmake/blob/master/modules/cc.cmake). +https://github.com/coderefinery/autocmake/blob/stable-0.x/modules/cc.cmake). Please note that the lines following ``# autocmake.cfg configuration::`` are understood by the ``update.py`` script to infer autocmake.cfg code from the documentation. As an example consider -https://github.com/coderefinery/autocmake/blob/master/modules/cc.cmake#L20-L25. +https://github.com/coderefinery/autocmake/blob/stable-0.x/modules/cc.cmake#L20-L25. Here, ``update.py`` will infer the configurations for ``docopt``, ``export``, and ``define``. diff --git a/doc/contributors/testing.rst b/doc/contributors/testing.rst index 43e02c7..5d99083 100644 --- a/doc/contributors/testing.rst +++ b/doc/contributors/testing.rst @@ -5,7 +5,7 @@ Testing Autocmake You will need to install `pytest `__. -Check also the `Travis `__ +Check also the `Travis `__ build and test recipe for other requirements. Your contributions and changes should preserve the test set. You can run locally all tests with:: diff --git a/doc/developers/bootstrap.rst b/doc/developers/bootstrap.rst index d0d6918..bb34573 100644 --- a/doc/developers/bootstrap.rst +++ b/doc/developers/bootstrap.rst @@ -12,12 +12,12 @@ infrastructure files which will be needed to build the project:: $ mkdir cmake # does not have to be called "cmake" - take the name you prefer $ cd cmake - $ wget https://github.com/coderefinery/autocmake/raw/master/update.py + $ wget https://github.com/coderefinery/autocmake/raw/stable-0.x/update.py $ python update.py --self On the MS Windows system, you can use the PowerShell wget-replacement:: - $ Invoke-WebRequest https://github.com/coderefinery/autocmake/raw/master/update.py -OutFile update.py + $ Invoke-WebRequest https://github.com/coderefinery/autocmake/raw/stable-0.x/update.py -OutFile update.py This creates (or updates) the following files (an existing ``autocmake.cfg`` is not overwritten by the script):: diff --git a/doc/developers/configuration.rst b/doc/developers/configuration.rst index 7e91681..aace625 100644 --- a/doc/developers/configuration.rst +++ b/doc/developers/configuration.rst @@ -13,38 +13,38 @@ below:: min_cmake_version: 2.8 [fc] - source: https://github.com/coderefinery/autocmake/raw/master/modules/fc.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/fc.cmake [cc] - source: https://github.com/coderefinery/autocmake/raw/master/modules/cc.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/cc.cmake [cxx] - source: https://github.com/coderefinery/autocmake/raw/master/modules/cxx.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/cxx.cmake [flags] - source: https://github.com/coderefinery/autocmake/raw/master/compilers/GNU.CXX.cmake - https://github.com/coderefinery/autocmake/raw/master/compilers/Intel.CXX.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/compilers/GNU.CXX.cmake + https://github.com/coderefinery/autocmake/raw/stable-0.x/compilers/Intel.CXX.cmake [rpath] source: custom/rpath.cmake [definitions] - source: https://github.com/coderefinery/autocmake/raw/master/modules/definitions.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/definitions.cmake [coverage] - source: https://github.com/coderefinery/autocmake/raw/master/modules/code_coverage.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/code_coverage.cmake [safeguards] - source: https://github.com/coderefinery/autocmake/raw/master/modules/safeguards.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/safeguards.cmake [default_build_paths] - source: https://github.com/coderefinery/autocmake/raw/master/modules/default_build_paths.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/default_build_paths.cmake [src] - source: https://github.com/coderefinery/autocmake/raw/master/modules/src.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/src.cmake [googletest] - source: https://github.com/coderefinery/autocmake/raw/master/modules/googletest.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/googletest.cmake [custom] source: custom/api.cmake @@ -71,13 +71,13 @@ The names of the other sections do not matter to Autocmake. You could name them min_cmake_version: 2.8 [one] - source: https://github.com/coderefinery/autocmake/raw/master/modules/fc.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/fc.cmake [two] - source: https://github.com/coderefinery/autocmake/raw/master/modules/cc.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/cc.cmake [whatever] - source: https://github.com/coderefinery/autocmake/raw/master/modules/cxx.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/cxx.cmake But it would not make much sense. It is better to choose names that are meaningful to you. @@ -163,7 +163,7 @@ The preferred way to extend ``CMakeLists.txt`` is by editing ``autocmake.cfg`` and using the ``source`` option:: [fc] - source: https://github.com/coderefinery/autocmake/raw/master/modules/fc.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/fc.cmake This will download ``fc.cmake`` and include it in ``CMakeLists.txt``. @@ -175,8 +175,8 @@ You can also include local CMake modules, e.g.:: It is also OK to include several modules at once:: [flags] - source: https://github.com/coderefinery/autocmake/raw/master/compilers/GNU.CXX.cmake - https://github.com/coderefinery/autocmake/raw/master/compilers/Intel.CXX.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/compilers/GNU.CXX.cmake + https://github.com/coderefinery/autocmake/raw/stable-0.x/compilers/Intel.CXX.cmake The modules will be included in the same order as they appear in ``autocmake.cfg``. @@ -187,7 +187,7 @@ Fetching files without including them in CMakeLists.txt Sometimes you want to fetch a file without including it in ``CMakeLists.txt``. This can be done with the ``fetch`` option. This is for instance done by the ``git_info.cmake`` module (see -https://github.com/coderefinery/autocmake/blob/master/modules/git_info/git_info.cmake#L10-L11). +https://github.com/coderefinery/autocmake/blob/stable-0.x/modules/git_info/git_info.cmake#L10-L11). If ``fetch`` is invoked in ``autocmake.cfg``, then the fetched file is placed under ``downloaded/``. If ``fetch`` is invoked from within a CMake module @@ -241,7 +241,7 @@ for many core modules which come with own options once you have sourced them. The lines following ``# autocmake.cfg configuration::`` are understood by the ``update.py`` script to infer ``autocmake.cfg`` code from the documentation. As an example consider -https://github.com/coderefinery/autocmake/blob/master/modules/cc.cmake#L20-L25. +https://github.com/coderefinery/autocmake/blob/stable-0.x/modules/cc.cmake#L20-L25. Here, ``update.py`` will infer the configurations for ``docopt``, ``export``, and ``define``. @@ -251,6 +251,6 @@ Overriding documented configurations Configurable documented defaults can be achieved using interpolations. See for instance -https://github.com/coderefinery/autocmake/blob/master/modules/boost/boost.cmake#L33-L36. +https://github.com/coderefinery/autocmake/blob/stable-0.x/modules/boost/boost.cmake#L33-L36. These can be modified within ``autocmake.cfg`` with a dictionary, e.g.: -https://github.com/coderefinery/autocmake/blob/master/test/boost_libs/cmake/autocmake.cfg#L9 +https://github.com/coderefinery/autocmake/blob/stable-0.x/test/boost_libs/cmake/autocmake.cfg#L9 diff --git a/doc/developers/customizing-modules.rst b/doc/developers/customizing-modules.rst index 30036df..6f2d810 100644 --- a/doc/developers/customizing-modules.rst +++ b/doc/developers/customizing-modules.rst @@ -38,9 +38,9 @@ Overriding defaults ------------------- Some modules use interpolations to set defaults, see for instance -https://github.com/coderefinery/autocmake/blob/master/modules/boost/boost.cmake#L33-L36. +https://github.com/coderefinery/autocmake/blob/stable-0.x/modules/boost/boost.cmake#L33-L36. These can be modified within ``autocmake.cfg``, e.g.: -https://github.com/coderefinery/autocmake/blob/master/test/boost_libs/cmake/autocmake.cfg#L9 +https://github.com/coderefinery/autocmake/blob/stable-0.x/test/boost_libs/cmake/autocmake.cfg#L9 Create own CMake modules diff --git a/doc/developers/example.rst b/doc/developers/example.rst index 8898fe6..5294bc5 100644 --- a/doc/developers/example.rst +++ b/doc/developers/example.rst @@ -25,7 +25,7 @@ Now we create ``cmake/`` and fetch ``update.py``:: $ mkdir cmake $ cd cmake/ - $ wget https://raw.githubusercontent.com/coderefinery/autocmake/master/update.py + $ wget https://raw.githubusercontent.com/coderefinery/autocmake/stable-0.x/update.py $ python update.py --self Now from top-level our file tree looks like this:: @@ -50,13 +50,13 @@ Now we edit ``cmake/autocmake.cfg`` to look like this:: min_cmake_version: 2.8 [fc] - source: https://github.com/coderefinery/autocmake/raw/master/modules/fc.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/fc.cmake [cc] - source: https://github.com/coderefinery/autocmake/raw/master/modules/cc.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/cc.cmake [src] - source: https://github.com/coderefinery/autocmake/raw/master/modules/src.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/src.cmake What we have specified here is the project name and that we wish Fortran and C support. The ``src.cmake`` module tells CMake to include a ``src/CMakeLists.txt``. diff --git a/doc/developers/faq.rst b/doc/developers/faq.rst index 0524dce..6077bf3 100644 --- a/doc/developers/faq.rst +++ b/doc/developers/faq.rst @@ -107,7 +107,7 @@ overwritten at some point. A good standard is to organize your sources under can include the latter in ``autocmake.cfg`` using:: [src] - source: https://github.com/coderefinery/autocmake/raw/master/modules/src.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/src.cmake If you really don't like to do it this way, you can describe your sources and targets in a custom module in a local file and include it like this:: diff --git a/doc/developers/updating-modules.rst b/doc/developers/updating-modules.rst index 7fdd8be..52eac99 100644 --- a/doc/developers/updating-modules.rst +++ b/doc/developers/updating-modules.rst @@ -21,7 +21,7 @@ rather fetch an older version, for example with the hash ``abcd123``. To achieve this, instead of:: [foo] - source: https://github.com/coderefinery/autocmake/raw/master/modules/foo.cmake + source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/foo.cmake pin the version to ``abcd123`` (you do not need to specify the full Git hash, a unique beginning will do):: diff --git a/doc/extract_rst.py b/doc/extract_rst.py index 436a168..1e09f44 100644 --- a/doc/extract_rst.py +++ b/doc/extract_rst.py @@ -73,7 +73,7 @@ def main(): if s_out != '': output.append('\n\n%s' % file_name) output.append('-'*len(file_name)) - output.append('`[Source code] `__' % full_file_name) + output.append('`[Source code] `__' % full_file_name) output.append(s_out) with open(os.path.join(THIS_DIR, 'module-reference.rst'), 'w') as f: diff --git a/modules/boost/boost.cmake b/modules/boost/boost.cmake index e3e9c74..18476fd 100644 --- a/modules/boost/boost.cmake +++ b/modules/boost/boost.cmake @@ -9,7 +9,7 @@ # # [boost] # override: {'major': 1, 'minor': 59, 'patch': 0, 'components': 'chrono;timer;system'} -# source: https://github.com/coderefinery/autocmake/raw/master/modules/boost/boost.cmake +# source: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/boost/boost.cmake # # Cross-dependencies between required components are not checked for. # For example, Boost.Timer depends on Boost.Chrono and Boost.System thus you @@ -49,13 +49,13 @@ # minor=48 # patch=0 # components='' -# fetch: https://github.com/coderefinery/autocmake/raw/master/modules/boost/boost_unpack.cmake -# https://github.com/coderefinery/autocmake/raw/master/modules/boost/boost_userconfig.cmake -# https://github.com/coderefinery/autocmake/raw/master/modules/boost/boost_configure.cmake -# https://github.com/coderefinery/autocmake/raw/master/modules/boost/boost_build.cmake -# https://github.com/coderefinery/autocmake/raw/master/modules/boost/boost_install.cmake -# https://github.com/coderefinery/autocmake/raw/master/modules/boost/boost_headers.cmake -# https://github.com/coderefinery/autocmake/raw/master/modules/boost/boost_cleanup.cmake +# fetch: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/boost/boost_unpack.cmake +# https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/boost/boost_userconfig.cmake +# https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/boost/boost_configure.cmake +# https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/boost/boost_build.cmake +# https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/boost/boost_install.cmake +# https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/boost/boost_headers.cmake +# https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/boost/boost_cleanup.cmake # http://sourceforge.net/projects/boost/files/boost/%(major)s.%(minor)s.%(patch)s/boost_%(major)s_%(minor)s_%(patch)s.zip # docopt: --boost-headers= Include directories for Boost [default: '']. # --boost-libraries= Library directories for Boost [default: '']. diff --git a/modules/git_info/git_info.cmake b/modules/git_info/git_info.cmake index 1b609c2..c1b38d4 100644 --- a/modules/git_info/git_info.cmake +++ b/modules/git_info/git_info.cmake @@ -7,8 +7,8 @@ # # autocmake.cfg configuration:: # -# fetch: https://github.com/coderefinery/autocmake/raw/master/modules/git_info/git_info_sub.cmake -# https://github.com/coderefinery/autocmake/raw/master/modules/git_info/git_info.h.in +# fetch: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/git_info/git_info_sub.cmake +# https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/git_info/git_info.h.in # CMAKE_CURRENT_LIST_DIR is undefined in CMake 2.8.2 # see https://public.kitware.com/Bug/print_bug_page.php?bug_id=11675 diff --git a/modules/math/accelerate.cmake b/modules/math/accelerate.cmake index 36eb3ce..7cce4db 100644 --- a/modules/math/accelerate.cmake +++ b/modules/math/accelerate.cmake @@ -12,8 +12,8 @@ # # docopt: --accelerate Find and link to ACCELERATE [default: False]. # define: '-DENABLE_ACCELERATE=%s' % arguments['--accelerate'] -# fetch: https://github.com/coderefinery/autocmake/raw/master/modules/find/find_libraries.cmake -# https://github.com/coderefinery/autocmake/raw/master/modules/find/find_include_files.cmake +# fetch: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/find/find_libraries.cmake +# https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/find/find_include_files.cmake option(ENABLE_ACCELERATE "Find and link to ACCELERATE" OFF) diff --git a/modules/math/cblas.cmake b/modules/math/cblas.cmake index 378cf9b..29f91ca 100644 --- a/modules/math/cblas.cmake +++ b/modules/math/cblas.cmake @@ -12,8 +12,8 @@ # # docopt: --cblas Find and link to CBLAS [default: False]. # define: '-DENABLE_CBLAS=%s' % arguments['--cblas'] -# fetch: https://github.com/coderefinery/autocmake/raw/master/modules/find/find_libraries.cmake -# https://github.com/coderefinery/autocmake/raw/master/modules/find/find_include_files.cmake +# fetch: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/find/find_libraries.cmake +# https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/find/find_include_files.cmake option(ENABLE_CBLAS "Find and link to CBLAS" OFF) diff --git a/modules/math/lapacke.cmake b/modules/math/lapacke.cmake index 3afbeab..244356c 100644 --- a/modules/math/lapacke.cmake +++ b/modules/math/lapacke.cmake @@ -12,8 +12,8 @@ # # docopt: --lapacke Find and link to LAPACKE [default: False]. # define: '-DENABLE_LAPACKE=%s' % arguments['--lapacke'] -# fetch: https://github.com/coderefinery/autocmake/raw/master/modules/find/find_libraries.cmake -# https://github.com/coderefinery/autocmake/raw/master/modules/find/find_include_files.cmake +# fetch: https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/find/find_libraries.cmake +# https://github.com/coderefinery/autocmake/raw/stable-0.x/modules/find/find_include_files.cmake option(ENABLE_LAPACKE "Find and link to LAPACKE" OFF) diff --git a/update.py b/update.py index 8200411..2ce6bae 100644 --- a/update.py +++ b/update.py @@ -375,7 +375,7 @@ def main(argv): if not os.path.isfile('autocmake.cfg'): print('- fetching example autocmake.cfg') fetch_url( - src='{0}/raw/master/example/autocmake.cfg'.format(AUTOCMAKE_GITHUB_URL), + src='{0}/raw/stable-0.x/example/autocmake.cfg'.format(AUTOCMAKE_GITHUB_URL), dst='autocmake.cfg' ) if not os.path.isfile('.gitignore'): @@ -384,17 +384,17 @@ def main(argv): f.write('*.pyc\n') print('- fetching lib/config.py') fetch_url( - src='{0}/raw/master/lib/config.py'.format(AUTOCMAKE_GITHUB_URL), + src='{0}/raw/stable-0.x/lib/config.py'.format(AUTOCMAKE_GITHUB_URL), dst='lib/config.py' ) print('- fetching lib/docopt/docopt.py') fetch_url( - src='{0}/raw/master/lib/docopt/docopt.py'.format(AUTOCMAKE_GITHUB_URL), + src='{0}/raw/stable-0.x/lib/docopt/docopt.py'.format(AUTOCMAKE_GITHUB_URL), dst='lib/docopt/docopt.py' ) print('- fetching update.py') fetch_url( - src='{0}/raw/master/update.py'.format(AUTOCMAKE_GITHUB_URL), + src='{0}/raw/stable-0.x/update.py'.format(AUTOCMAKE_GITHUB_URL), dst='update.py' ) sys.exit(0) From ea8563327182070eb5c2be89e0764587c9e8bc0d Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Fri, 20 May 2016 11:19:46 +0200 Subject: [PATCH 2/5] set version to 0.5.0 --- doc/conf.py | 4 ++-- update.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 0166b7c..1b2cbfe 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -60,9 +60,9 @@ author = u'Radovan Bast, Jonas Juselius, and contributors' # built documents. # # The short X.Y version. -version = '0.0' +version = '0.5' # The full version, including alpha/beta/rc tags. -release = '0.0' +release = '0.5.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/update.py b/update.py index 2ce6bae..01a0f6b 100644 --- a/update.py +++ b/update.py @@ -6,7 +6,7 @@ import datetime import ast import collections -__version__ = 'X.Y.Z' +__version__ = '0.5.0' # we do not use the nicer sys.version_info.major # for compatibility with Python < 2.7 From 512f1d3877680ba40bf955e93d111d9a1b846512 Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Fri, 20 May 2016 11:22:15 +0200 Subject: [PATCH 3/5] relocate badge to stable-0.x --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b0f128e..4ac4f28 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![Build Status](https://travis-ci.org/coderefinery/autocmake.svg?branch=stable-0.x)](https://travis-ci.org/coderefinery/autocmake/builds) -[![Documentation Status](https://readthedocs.org/projects/autocmake/badge/?version=latest)](http://autocmake.readthedocs.org) +[![Documentation Status](https://readthedocs.org/projects/autocmake/badge/?version=stable-0.x)](http://autocmake.readthedocs.org) [![License](https://img.shields.io/badge/license-%20BSD--3-blue.svg)](../stable-0.x/LICENSE) From 648bc2c20d3100920e49339fb8bac065e2f8c0fb Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Fri, 20 May 2016 11:27:56 +0200 Subject: [PATCH 4/5] links to documentation --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c782e2c..8d3682e 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,13 @@ Licensed under [BSD-3](../master/LICENSE). See http://autocmake.org. -### Projects using Autocmake +## Documentation + +- [Latest stable code](http://autocmake.readthedocs.io/en/stable-0.x/) +- [Bleeding edge code](http://autocmake.readthedocs.io/en/latest/) + + +## Projects using Autocmake - [Numgrid](https://github.com/dftlibs/numgrid/) - [XCint](https://github.com/dftlibs/xcint/) From 369e0a49376d2cafe95cc7c71ecbc041f54e3c3c Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Fri, 20 May 2016 11:28:08 +0200 Subject: [PATCH 5/5] s/org/io/ --- doc/contributors/doc.rst | 2 +- example/autocmake.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/contributors/doc.rst b/doc/contributors/doc.rst index 4e7eaeb..2cdfd7c 100644 --- a/doc/contributors/doc.rst +++ b/doc/contributors/doc.rst @@ -9,7 +9,7 @@ This documentation is refreshed upon each push to the central repository. The module reference documentation is generated from the module sources using ``#.rst:`` tags (compare for instance -http://autocmake.readthedocs.org/en/latest/module-reference.html#cc-cmake with +http://autocmake.readthedocs.io/en/latest/module-reference.html#cc-cmake with https://github.com/coderefinery/autocmake/blob/master/modules/cc.cmake). Please note that the lines following ``# autocmake.cfg configuration::`` are diff --git a/example/autocmake.cfg b/example/autocmake.cfg index cb9b3db..211d3e5 100644 --- a/example/autocmake.cfg +++ b/example/autocmake.cfg @@ -1,5 +1,5 @@ # CMakeLists.txt and setup script will be generated from this file -# see: http://autocmake.readthedocs.org/en/latest/developers/configuration.html +# see: http://autocmake.readthedocs.io/en/latest/developers/configuration.html # uncomment the following three lines and set the project name # [project]