The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

8 lines
256 B

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)