4 changed files with 20 additions and 0 deletions
@ -1,3 +1,4 @@ |
|||
/target |
|||
.idea/ |
|||
crsn.json5 |
|||
|
|||
|
@ -0,0 +1,8 @@ |
|||
#!/bin/bash |
|||
|
|||
set -e |
|||
|
|||
cargo build --release --bin launcher |
|||
cp target/release/launcher ./out/crsn |
|||
|
|||
echo "Target built and copied to ./out/crsn" |
@ -0,0 +1,8 @@ |
|||
#!/bin/bash |
|||
|
|||
set -e |
|||
|
|||
cargo build --target x86_64-unknown-linux-musl --release --bin launcher_nox |
|||
cp target/x86_64-unknown-linux-musl/release/launcher_nox ./out/crsn-musl |
|||
|
|||
echo "Target built and copied to ./out/crsn-musl" |
@ -0,0 +1,3 @@ |
|||
* |
|||
!.gitignore |
|||
|
Loading…
Reference in new issue