From 2790590996da2f6a0f4d59570de62078a5ac8ae2 Mon Sep 17 00:00:00 2001 From: "Claudius \"keldu\" Holeksa" Date: Mon, 5 Feb 2024 17:39:28 +0100 Subject: tools: Move to new module structure and moving to more schema based generation to convert more easily to json --- modules/tools/SConstruct | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'modules/tools/SConstruct') 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]); -- cgit v1.2.3