summaryrefslogtreecommitdiff
path: root/examples/poiseulle_3d/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'examples/poiseulle_3d/SConstruct')
-rw-r--r--examples/poiseulle_3d/SConstruct7
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/poiseulle_3d/SConstruct b/examples/poiseulle_3d/SConstruct
index a7201cb..fe206e1 100644
--- a/examples/poiseulle_3d/SConstruct
+++ b/examples/poiseulle_3d/SConstruct
@@ -54,10 +54,13 @@ env=Environment(ENV=os.environ, variables=env_vars, CPPPATH=[],
'-std=c++20',
'-g',
'-Wall',
- '-Wextra'
+ '-Wextra',
+ '-isystem', 'AdaptiveCpp'
],
LIBS=[
- 'forstio-core'
+ 'forstio-core',
+ 'acpp-rt',
+ 'omp'
]
);
env.__class__.add_source_files = add_kel_source_files