8 lines
191 B
Bash
8 lines
191 B
Bash
|
|
# Copying source code into working directory
|
||
|
|
cp -r /src/* ./
|
||
|
|
|
||
|
|
# Building the Project
|
||
|
|
cargo build
|
||
|
|
|
||
|
|
# Copy the .FAP file to the app directory
|
||
|
|
cp ./target/thumbv7em-none-eabihf/debug/*.fap /app/
|