#!/bin/shset-e# cd to the directory containing this crate's Cargo.toml so that we don't need# to pass --manifest-path to every `cargo` command.cd"$(dirname"$0")"cargo build --verbose(cd ctest&&./compile&&LD_LIBRARY_PATH=../../target/debug./test)(cd examples&&./compile&&LD_LIBRARY_PATH=../../target/debug./iter)