aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/rust/1 basic/meson.build
blob: 3919279a9f4e51869e56ad32982948b78f24410a (plain)
1
2
3
4
5
6
7
8
9
project('rustprog', 'rust')

e = executable('program', 'prog.rs',
  rust_args : ['-C', 'lto'], # Just a test
  install : true
)
test('rusttest', e)

subdir('subdir')