diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-08-04 16:16:17 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2025-08-04 16:16:17 +0200 |
commit | 51a044e3160df05ad56102d3b8b1e0087c60d111 (patch) | |
tree | 334f0ba1f7bb02872661207dfcc9f9d0c7cfa587 /SConstruct | |
parent | 9ff280692f5cc78c0b006f8b6f1b66f7f36ba2a6 (diff) |
emits weird behaviour on particles
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -50,8 +50,17 @@ env_vars.Add('build_examples', env=Environment(ENV=os.environ, variables=env_vars, CPPPATH=[], CPPDEFINES=['SAW_UNIX'], - CXXFLAGS=['-std=c++20','-g','-Wall','-Wextra'], - LIBS=['forstio-core','forstio-codec']) + CXXFLAGS=[ + '-std=c++20', + '-g', + '-Wall', + '-Wextra' + ], + LIBS=[ + 'forstio-core', + 'forstio-codec' + ] +); env.__class__.add_source_files = add_kel_source_files env.Tool('compilation_db'); env.cdb = env.CompilationDatabase('compile_commands.json'); |