You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
286 B
Bash
13 lines
286 B
Bash
#!/usr/bin/env sh
|
|
|
|
BUILD_FILE="./target/$TARGET/release/$NAME.wasm"
|
|
OUT_DIR="./platforms/web/"
|
|
NAME="game-jam-casino"
|
|
TARGET="wasm32-unknown-unknown"
|
|
|
|
cargo build --profile wasm-release --target $TARGET
|
|
|
|
wasm-bindgen --target web \
|
|
--out-dir $OUT_DIR \
|
|
--out-name $NAME \
|
|
$BUILD_FILE |