diff options
author | David Robillard <d@drobilla.net> | 2022-05-27 20:11:47 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-05-27 20:11:47 -0400 |
commit | c3029a135236a3b8d8f323be9fcce114158b96ef (patch) | |
tree | d229420f21d5b506c9be8e3e75177e8d68f84bb3 | |
parent | 1eed3df05526b22d716a2f89f166804f894ac5b1 (diff) | |
download | patchage-c3029a135236a3b8d8f323be9fcce114158b96ef.tar.gz patchage-c3029a135236a3b8d8f323be9fcce114158b96ef.tar.bz2 patchage-c3029a135236a3b8d8f323be9fcce114158b96ef.zip |
Build as C++17
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ def options(ctx): def configure(conf): conf.load('compiler_cxx', cache=True) conf.load('autowaf', cache=True) - autowaf.set_cxx_lang(conf, 'c++14') + autowaf.set_cxx_lang(conf, 'c++17') if Options.options.strict: # Check for programs used by lint target |