This commit is contained in:
Radovan Bast 2015-06-04 13:47:55 +02:00
parent 4755abbd31
commit 6c6f779b2d
16 changed files with 4 additions and 4 deletions

View File

@ -21,10 +21,10 @@ rather fetch an older version with the hash ``abcd123``. To achieve this, instea
of:: of::
[coverage] [coverage]
source: https://github.com/scisoft/autocmake/raw/master/modules/UseCodeCoverage.cmake source: https://github.com/scisoft/autocmake/raw/master/modules/code_coverage.cmake
pin the version to ``abcd123`` (you do not need to specify the full Git hash, a unique pin the version to ``abcd123`` (you do not need to specify the full Git hash, a unique
beginning will do):: beginning will do)::
[coverage] [coverage]
source: https://github.com/scisoft/autocmake/raw/abcd123/modules/UseCodeCoverage.cmake source: https://github.com/scisoft/autocmake/raw/abcd123/modules/code_coverage.cmake

View File

@ -2,6 +2,6 @@
name: example name: example
[cxx] [cxx]
source: https://github.com/scisoft/autocmake/raw/master/modules/UseCXX.cmake source: https://github.com/scisoft/autocmake/raw/master/modules/cxx.cmake
docopt: --cxx=<CXX> C++ compiler [default: g++]. docopt: --cxx=<CXX> C++ compiler [default: g++].
export: 'CXX=%s' % arguments['--cxx'] export: 'CXX=%s' % arguments['--cxx']

View File

@ -2,6 +2,6 @@
name: example name: example
[fortran] [fortran]
source: https://github.com/scisoft/autocmake/raw/master/modules/UseFortran.cmake source: https://github.com/scisoft/autocmake/raw/master/modules/fc.cmake
docopt: --fc=<FC> Fortran compiler [default: gfortran]. docopt: --fc=<FC> Fortran compiler [default: gfortran].
export: 'FC=%s' % arguments['--fc'] export: 'FC=%s' % arguments['--fc']