diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-05-31 14:19:32 +0200 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-05-31 14:19:32 +0200 |
commit | 039dd61d291060010a11a3f7bb1addfa7eb77bfd (patch) | |
tree | 2262281a3f1f6a7fb52eacd0619f9a9dad5a93d9 /modules/remote-sycl/tests/SConscript | |
parent | de5c04c86d93ddf3b98b8f35de42695865d7c408 (diff) |
Working on getting sycl to work
Diffstat (limited to 'modules/remote-sycl/tests/SConscript')
-rw-r--r-- | modules/remote-sycl/tests/SConscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/remote-sycl/tests/SConscript b/modules/remote-sycl/tests/SConscript index f8ffc92..3a9a2cf 100644 --- a/modules/remote-sycl/tests/SConscript +++ b/modules/remote-sycl/tests/SConscript @@ -12,6 +12,8 @@ dir_path = Dir('.').abspath # Environment for base library test_cases_env = env.Clone(); +test_cases_env['CXX'] = 'syclcc'; + test_cases_env.Append(LIBS=['forstio-test']); test_cases_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) @@ -28,4 +30,4 @@ test_cases_env.program = test_cases_env.Program('#bin/tests', [objects_static, e env.Alias('test', test_cases_env.program); env.Alias('check', test_cases_env.program); -env.targets += ['test','check']; +# env.targets += ['test','check']; |