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.
16 lines
588 B
16 lines
588 B
project('cudamodule', 'cuda', version : '1.0.0') |
|
|
|
nvcc = meson.get_compiler('cuda') |
|
cuda = import('unstable-cuda') |
|
|
|
arch_flags = cuda.nvcc_arch_flags(nvcc, 'Auto', detected: ['3.0']) |
|
arch_readable = cuda.nvcc_arch_readable(nvcc, 'Auto', detected: ['3.0']) |
|
driver_version = cuda.min_driver_version(nvcc) |
|
|
|
message('NVCC version: ' + nvcc.version()) |
|
message('NVCC flags: ' + ' '.join(arch_flags)) |
|
message('NVCC readable: ' + ' '.join(arch_readable)) |
|
message('Driver version: >=' + driver_version) |
|
|
|
exe = executable('prog', 'prog.cu', cuda_args: arch_flags) |
|
test('cudatest', exe)
|
|
|