feat(design-demo): debian packaging

This commit is contained in:
Michael Aaron Murphy 2023-09-13 15:19:58 +02:00 committed by Michael Murphy
parent 37d5dd8b65
commit 5cd9d74189
12 changed files with 164 additions and 4 deletions

View file

@ -18,6 +18,14 @@ check-winit *args:
# Runs a check with JSON message format for IDE integration
check-json: (check '--message-format=json')
# Remove Cargo build artifacts
clean:
cargo clean
# Also remove .cargo and vendored dependencies
clean-dist: clean
rm -rf .cargo vendor vendor.tar target
# Runs an example of the given {{name}}
example name:
cargo run --release -p {{name}}
run name:
cargo run --release -p {{name}}