summaryrefslogtreecommitdiff
path: root/modules/tools/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tools/SConstruct')
-rw-r--r--modules/tools/SConstruct6
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]);