[DEV] update to C++17

This commit is contained in:
Edouard DUPIN 2018-08-20 21:29:31 +02:00
parent 1026219ed2
commit 3101490a3d
3 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ def configure(target, my_module):
]) ])
# build in C++ mode # build in C++ mode
my_module.compile_version("c++", 2011) my_module.compile_version("c++", 2017)
# add dependency of the generic C++ library: # add dependency of the generic C++ library:
my_module.add_depend([ my_module.add_depend([
'etk-base', 'etk-base',

View File

@ -62,7 +62,7 @@ def configure(target, my_module):
]) ])
# build in C++ mode # build in C++ mode
my_module.compile_version("c++", 2011) my_module.compile_version("c++", 2017)
# add dependency of the generic C++ library: # add dependency of the generic C++ library:
my_module.add_depend([ my_module.add_depend([
'c', 'c',

View File

@ -75,7 +75,7 @@ def configure(target, my_module):
]) ])
# build in C++ mode # build in C++ mode
my_module.compile_version("c++", 2011) my_module.compile_version("c++", 2017)
# add dependency of the generic C++ library: # add dependency of the generic C++ library:
my_module.add_depend([ my_module.add_depend([
'c', 'c',