Removed additional parameters from SConscript, the includer should take care of that.

This commit is contained in:
Patrick 2022-11-23 22:55:51 +01:00
parent 4fd0760f75
commit ad009c6224
Signed by: mewin
GPG Key ID: CEDB412C39B5BC47

View File

@ -171,7 +171,7 @@ def generate_source(target, source, env):
return None return None
pygen_builder = Builder(action = generate_source) 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(BUILDERS = {'PyGen': pygen_builder})
env.Append(CPPPATH = ['include']) env.Append(CPPPATH = ['include'])