diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | SConstruct | 13 |
2 files changed, 12 insertions, 4 deletions
@@ -8,8 +8,7 @@ .sconsign.dblite # nix -result -result-* +result* # regular target which is not really used build @@ -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'); |