meson.build 197 B

12345678
  1. project('simple', 'cuda', version : '1.0.0')
  2. subdir('shared')
  3. thread_dep = dependency('threads')
  4. exe = executable('prog', 'main.cu', dependencies: [libkernels, thread_dep])
  5. test('cudatest', exe)