diff options
Diffstat (limited to 'modules/io/SConstruct')
-rw-r--r-- | modules/io/SConstruct | 13 |
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'); |