diff options
Diffstat (limited to 'examples/cavity_2d_gpu/SConstruct')
-rw-r--r-- | examples/cavity_2d_gpu/SConstruct | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/cavity_2d_gpu/SConstruct b/examples/cavity_2d_gpu/SConstruct index fc60882..da59a2d 100644 --- a/examples/cavity_2d_gpu/SConstruct +++ b/examples/cavity_2d_gpu/SConstruct @@ -54,11 +54,13 @@ env=Environment(ENV=os.environ, variables=env_vars, CPPPATH=[], '-std=c++20', '-g', '-Wall', - '-Wextra' + '-Wextra', + '-isystem', 'AdaptiveCpp' ], LIBS=[ 'forstio-core', - 'forstio-codec' + 'forstio-codec', + 'acpp-rt' ] ); env.__class__.add_source_files = add_kel_source_files |