1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/build_release.sh

11 lines
252 B
Bash
Executable file

#!/bin/bash
# Exit if any subcommand fails
set -e
export RUSTFLAGS="--remap-path-prefix=$PWD="
if [ -n "$WITH_LIBSNARK" ]; then
cargo build --release --package zokrates_cli --features="libsnark"
else
cargo build --release --package zokrates_cli
fi