diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-02-05 17:39:28 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-02-05 17:39:28 +0100 |
commit | 2790590996da2f6a0f4d59570de62078a5ac8ae2 (patch) | |
tree | 526c188230bd29d5127cc13d10390b1cd134bebc /modules/tools/SConstruct | |
parent | 4e45bbc55c4011b919f0af8d43850748209f7f09 (diff) |
tools: Move to new module structure and moving to more schema based
generation to convert more easily to json
Diffstat (limited to 'modules/tools/SConstruct')
-rw-r--r-- | modules/tools/SConstruct | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/tools/SConstruct b/modules/tools/SConstruct index 9a02291..20af11b 100644 --- a/modules/tools/SConstruct +++ b/modules/tools/SConstruct @@ -49,7 +49,8 @@ env=Environment(ENV=os.environ, variables=env_vars, CPPPATH=[], LIBS=[ 'forstio-core', 'forstio-async', - 'forstio-codec' + 'forstio-codec', + 'forstio-codec-json' ] ); env.__class__.add_source_files = add_kel_source_files @@ -62,7 +63,8 @@ env.headers = []; env.targets = []; Export('env') -SConscript('SConscript') +SConscript('c++/SConscript') +SConscript('tests/SConscript') env.Alias('cdb', env.cdb); env.Alias('all', [env.targets]); |