diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-04-15 15:24:40 +0200 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-04-15 15:24:40 +0200 |
| commit | 24d83f549a6fba7b23a0c048e1512d00ed704e0d (patch) | |
| tree | 1c38294285e1fb60b5023f25f02f7c3bbd990a40 /modules/io_codec/SConstruct | |
| parent | c0d6895eac25040f1fa2ee766fc0f2c55c492634 (diff) | |
| download | forstio-forstio-24d83f549a6fba7b23a0c048e1512d00ed704e0d.tar.gz | |
codec, io_codec: Fixed some type issues with functions and moved rpc to
io_codec due to dependency issues
Diffstat (limited to 'modules/io_codec/SConstruct')
| -rw-r--r-- | modules/io_codec/SConstruct | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/io_codec/SConstruct b/modules/io_codec/SConstruct index 429656a..f4b8164 100644 --- a/modules/io_codec/SConstruct +++ b/modules/io_codec/SConstruct @@ -46,7 +46,13 @@ 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-io']) + LIBS=[ + 'forstio-core', + 'forstio-async', + 'forstio-io', + 'forstio-codec' + ] +); env.__class__.add_source_files = add_kel_source_files env.Tool('compilation_db'); env.cdb = env.CompilationDatabase('compile_commands.json'); |
