summaryrefslogtreecommitdiff
path: root/modules/io/SConstruct
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2024-03-08 19:57:18 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2024-03-08 19:57:18 +0100
commit21f52f91ddbaf409c45663a71d84033fbde22198 (patch)
treeebe7d664b89e506240ec255f878feb7b6bfaf5d5 /modules/io/SConstruct
parent7a097bd3bdb288342cc7314f6942347274811030 (diff)
io: Preparing example env
Diffstat (limited to 'modules/io/SConstruct')
-rw-r--r--modules/io/SConstruct13
1 files changed, 11 insertions, 2 deletions
diff --git a/modules/io/SConstruct b/modules/io/SConstruct
index 5b03a9f..035bdda 100644
--- a/modules/io/SConstruct
+++ b/modules/io/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=['forstio-async'])
+ 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');