mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-11-15 13:21:37 +00:00
81ca9ca3a3
display a custom and clean about dialog with the infrastructure based on meson to genetate the config.rs
24 lines
609 B
Bash
24 lines
609 B
Bash
#!/bin/sh
|
|
|
|
export MESON_BUILD_ROOT="$1"
|
|
export MESON_SOURCE_ROOT="$2"
|
|
export CARGO_TARGET_DIR="$MESON_BUILD_ROOT"/target
|
|
export CARGO_HOME="$CARGO_TARGET_DIR"/cargo-home
|
|
export OUTPUT="$3"
|
|
export BUILDTYPE="$4"
|
|
export APP_BIN="$5"
|
|
|
|
|
|
if [ $BUILDTYPE = "release" ]
|
|
then
|
|
echo "RELEASE MODE"
|
|
cargo build --manifest-path \
|
|
"$MESON_SOURCE_ROOT"/Cargo.toml --release && \
|
|
cp "$CARGO_TARGET_DIR"/release/"$APP_BIN" "$OUTPUT"
|
|
else
|
|
echo "DEBUG MODE"
|
|
cargo build --manifest-path \
|
|
"$MESON_SOURCE_ROOT"/Cargo.toml && \
|
|
cp "$CARGO_TARGET_DIR"/debug/"$APP_BIN" "$OUTPUT"
|
|
fi
|
|
|