switch to .format()
This commit is contained in:
@ -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
|
||||
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user