mirror of
https://code.gri.mw/GUI/grim.git
synced 2026-07-12 17:58:55 +00:00
build: add linux script
This commit is contained in:
Executable
+18
@@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
case $1 in
|
||||
debug|release)
|
||||
;;
|
||||
*)
|
||||
echo "Usage: build_and_run.sh [type] where is type is 'debug' or 'release'" >&2
|
||||
exit 1
|
||||
esac
|
||||
|
||||
type=$1
|
||||
[[ ${type} == "release" ]] && release_param+=(--release)
|
||||
cargo build ${release_param[@]} --target x86_64-unknown-linux-gnu
|
||||
|
||||
if [ $? -eq 0 ]
|
||||
then
|
||||
./target/x86_64-unknown-linux-gnu/release/grim
|
||||
fi
|
||||
Reference in New Issue
Block a user