switch to .format()

This commit is contained in:
Radovan Bast
2016-05-19 23:46:32 +02:00
parent 0c6976a70d
commit 5b7ad87479
13 changed files with 15 additions and 15 deletions

View File

@ -11,7 +11,7 @@
# autocmake.cfg configuration::
#
# docopt: --accelerate Find and link to ACCELERATE [default: False].
# define: '-DENABLE_ACCELERATE=%s' % arguments['--accelerate']
# define: '-DENABLE_ACCELERATE={0}'.format(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

View File

@ -11,7 +11,7 @@
# autocmake.cfg configuration::
#
# docopt: --acml Find and link to ACML [default: False].
# define: '-DENABLE_ACML=%s' % arguments['--acml']
# define: '-DENABLE_ACML={0}'.format(arguments['--acml'])
option(ENABLE_ACML "Find and link to ACML" OFF)

View File

@ -11,7 +11,7 @@
# autocmake.cfg configuration::
#
# docopt: --atlas Find and link to ATLAS [default: False].
# define: '-DENABLE_ATLAS=%s' % arguments['--atlas']
# define: '-DENABLE_ATLAS={0}'.format(arguments['--atlas'])
option(ENABLE_ATLAS "Find and link to ATLAS" OFF)

View File

@ -11,7 +11,7 @@
# autocmake.cfg configuration::
#
# docopt: --blas Find and link to BLAS [default: False].
# define: '-DENABLE_BLAS=%s' % arguments['--blas']
# define: '-DENABLE_BLAS={0}'.format(arguments['--blas'])
option(ENABLE_BLAS "Find and link to BLAS" OFF)

View File

@ -11,7 +11,7 @@
# autocmake.cfg configuration::
#
# docopt: --cblas Find and link to CBLAS [default: False].
# define: '-DENABLE_CBLAS=%s' % arguments['--cblas']
# define: '-DENABLE_CBLAS={0}'.format(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

View File

@ -11,7 +11,7 @@
# autocmake.cfg configuration::
#
# docopt: --goto Find and link to GOTO [default: False].
# define: '-DENABLE_GOTO=%s' % arguments['--goto']
# define: '-DENABLE_GOTO={0}'.format(arguments['--goto'])
option(ENABLE_GOTO "Find and link to GOTO" OFF)

View File

@ -11,7 +11,7 @@
# autocmake.cfg configuration::
#
# docopt: --lapack Find and link to LAPACK [default: False].
# define: '-DENABLE_LAPACK=%s' % arguments['--lapack']
# define: '-DENABLE_LAPACK={0}'.format(arguments['--lapack'])
option(ENABLE_LAPACK "Find and link to LAPACK" OFF)

View File

@ -11,7 +11,7 @@
# autocmake.cfg configuration::
#
# docopt: --lapacke Find and link to LAPACKE [default: False].
# define: '-DENABLE_LAPACKE=%s' % arguments['--lapacke']
# define: '-DENABLE_LAPACKE={0}'.format(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