diff options
| -rw-r--r-- | test cases/cuda/1 simple/meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test cases/cuda/1 simple/meson.build b/test cases/cuda/1 simple/meson.build index 4f111d1b9..e3069df90 100644 --- a/test cases/cuda/1 simple/meson.build +++ b/test cases/cuda/1 simple/meson.build @@ -1,4 +1,8 @@ project('simple', 'cuda', version : '1.0.0') +# https://github.com/mesonbuild/meson/issues/13240 +d = meson.get_compiler('cuda').find_library('doesnotexist', required : false) +assert(not d.found()) + exe = executable('prog', 'prog.cu') test('cudatest', exe) |
