From aef20d6c9688e148383f34216378ad1eaf05b3fd Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 12 Jul 2017 10:01:25 +0200 Subject: [PATCH] Move to C++11. Code and kiwix-lib are C++11. So compile using C++11. --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 43c85d6..d98f208 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,7 @@ project('kiwix-tools', 'cpp', version : '0.2.0', - license : 'GPL') + license : 'GPL', + default_options: ['c_std=c11', 'cpp_std=c++11']) compiler = meson.get_compiler('cpp')