Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Add basic meson build system
Browse files Browse the repository at this point in the history
This relies on the unstable-cargo module, which has yet to be
upstreamed. See: mesonbuild/meson#2617
  • Loading branch information
her001 committed Nov 29, 2017
1 parent 3bea109 commit 4121dc9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
project('fest', 'rust')

subdir('src')

3 changes: 3 additions & 0 deletions src/meson.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
cargo = import('unstable-cargo')
cargo.executable('fest-im', toml: '../Cargo.toml', install: true)

0 comments on commit 4121dc9

Please sign in to comment.