Add basic meson.build for rust project

While the project compiles OK with `cargo build`, it does not compile
with meson. See https://github.com/mesonbuild/meson/issues/3632
master
Mahmoud Al-Qudsi 2018-05-26 13:34:06 -05:00
parent 8a79052110
commit b9d12bbc8d
2 changed files with 7 additions and 0 deletions

1
.gitignore vendored

@ -1,2 +1,3 @@
/target
**/*.rs.bk
build

@ -0,0 +1,6 @@
project('meson-rust', ['rust'])
executable('main', [
'src/main.rs',
'src/foo.rs'
])