From ad009c6224219a2458697de9c0aafed3cad5e8c2 Mon Sep 17 00:00:00 2001 From: Patrick Wuttke Date: Wed, 23 Nov 2022 22:55:51 +0100 Subject: [PATCH] Removed additional parameters from SConscript, the includer should take care of that. --- SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConscript b/SConscript index 8fe4753..0d7c5e3 100644 --- a/SConscript +++ b/SConscript @@ -171,7 +171,7 @@ def generate_source(target, source, env): return None pygen_builder = Builder(action = generate_source) -env.Append(CCFLAGS = '-Wall -Wextra -Werror -pedantic -std=c++20') +# env.Append(CCFLAGS = ' -Wall -Wextra -Werror -pedantic -std=c++20') env.Append(BUILDERS = {'PyGen': pygen_builder}) env.Append(CPPPATH = ['include'])