summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2024-03-08 21:53:58 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2024-03-08 21:53:58 +0100
commit2c624e9ea3d43d63ee487ccb99f63877f4109026 (patch)
tree195cfce5b55782be014f83791b0bcf85981f78e0 /SConstruct
parent21f52f91ddbaf409c45663a71d84033fbde22198 (diff)
git: Changed ignore
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct13
1 files changed, 11 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index 015645b..035bdda 100644
--- a/SConstruct
+++ b/SConstruct
@@ -45,8 +45,17 @@ env_vars.Add('prefix',
env=Environment(ENV=os.environ, variables=env_vars, CPPPATH=[],
CPPDEFINES=['SAW_UNIX'],
- CXXFLAGS=['-std=c++20','-g','-Wall','-Wextra'],
- LIBS=[])
+ CXXFLAGS=[
+ '-std=c++20',
+ '-g',
+ '-Wall',
+ '-Wextra'
+ ],
+ LIBS=[
+ 'forstio-core',
+ 'forstio-async'
+ ]
+);
env.__class__.add_source_files = add_kel_source_files
env.Tool('compilation_db');
env.cdb = env.CompilationDatabase('compile_commands.json');