summaryrefslogtreecommitdiff
path: root/tests/SConstruct
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2023-11-08 16:20:32 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2023-11-08 16:20:32 +0100
commit3353cad0b365bc870306ccaa21f701859e68a92f (patch)
tree04f737ad844d10ef550d04a6f8140b69fc7032a4 /tests/SConstruct
parentfeae80e5e4236654ea5a843197e05d9211869750 (diff)
codec-netcdf: Multidimensional arrays implemented
Diffstat (limited to 'tests/SConstruct')
-rw-r--r--tests/SConstruct8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/SConstruct b/tests/SConstruct
index 4434d20..88477f7 100644
--- a/tests/SConstruct
+++ b/tests/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-core', 'forstio-async', 'forstio-test'])
+ LIBS=[
+ 'forstio-core',
+ 'forstio-async',
+ 'forstio-test',
+ 'netcdf'
+ ]
+);
env.__class__.add_source_files = add_kel_source_files
env.Tool('compilation_db');
env.cdb = env.CompilationDatabase('compile_commands.json');