From 5fc11f36ce2bd960ebbeaa6eafbc34df58f7d2f9 Mon Sep 17 00:00:00 2001 From: Marc Gilleron Date: Fri, 23 Dec 2016 16:23:53 +0100 Subject: [PATCH] Added C++11 flag --- config.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/config.py b/config.py index f9bd7da..d134ab6 100644 --- a/config.py +++ b/config.py @@ -1,11 +1,9 @@ def can_build(platform): - return True + return True def configure(env): - pass - - - + # FastNoise uses a few C++11 features + env.Append(SCONS_CXX_STANDARD="c++11")