diff options
Diffstat (limited to 'modules/remote-sycl/tests')
-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']; |