fixed: build python bindings as c++17

This commit is contained in:
Arne Morten Kvarving
2020-02-10 11:01:39 +01:00
parent d8aae55837
commit c272ebba62

View File

@@ -57,7 +57,8 @@ ext_modules = [
libraries=['opmcommon', 'boost_filesystem', 'boost_regex'],
language='c++',
undef_macros=["NDEBUG"],
include_dirs=["pybind11/include"]
include_dirs=["pybind11/include"],
extra_compile_args=['-std=c++17']
)
]