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/3632master
parent
8a79052110
commit
b9d12bbc8d
@ -1,2 +1,3 @@
|
|||||||
/target
|
/target
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
|
build
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
project('meson-rust', ['rust'])
|
||||||
|
|
||||||
|
executable('main', [
|
||||||
|
'src/main.rs',
|
||||||
|
'src/foo.rs'
|
||||||
|
])
|
Loading…
Reference in New Issue