Skip to content
Snippets Groups Projects
Unverified Commit 2158d2c6 authored by Benjamin Cumming's avatar Benjamin Cumming Committed by GitHub
Browse files

Version bump and ready for release (#1301)

parent 73256fc3
No related branches found
Tags v0.5
No related merge requests found
......@@ -12,6 +12,7 @@ graft modcc
graft python
graft sup
graft test
graft arborio
prune ext/sphinx_rtd_theme
prune ext/google-benchmark
0.4.1-dev
0.5
......@@ -18,7 +18,8 @@ class CL_opt:
CL_opt.instance = {'mpi': False,
'gpu': 'none',
'vec': False,
'arch': 'native'}
'arch': 'native',
'bundled': True}
def settings(self):
return CL_opt.instance
......@@ -111,7 +112,7 @@ class cmake_build(build_ext):
'-DARB_VECTORIZE={}'.format('on' if opt['vec'] else 'off'),
'-DARB_ARCH={}'.format(opt['arch']),
'-DARB_GPU={}'.format(opt['gpu']),
'-DARB_USE_BUNDLED_LIBS={}'.format('on' if opt['bundled'] else 'off']),
'-DARB_USE_BUNDLED_LIBS={}'.format('on' if opt['bundled'] else 'off'),
'-DCMAKE_BUILD_TYPE=Release' # we compile with debug symbols in release mode.
]
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment