This requires a RUSTFLAG to be set before hand for rayon to build. This brakes a lot of tools like rls and clippy by default and require special configs for itnegration. Additionally, rayon_futures is still 0.1 and not much work seem to have gone into it. Ideally it should be replased with the tokio runtime/threadpool.
16 lines
373 B
Bash
Executable File
16 lines
373 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export CARGO_HOME=$1/target/cargo-home
|
|
export LOCALEDIR="$3"
|
|
export APP_ID="$4"
|
|
export VERSION="$5"
|
|
export PROFILE="$6"
|
|
|
|
if [[ "$PROFILE" == "Devel" ]]
|
|
then
|
|
echo "DEBUG MODE"
|
|
cargo build -p podcasts-gtk && cp $1/target/debug/podcasts-gtk $2
|
|
else
|
|
echo "RELEASE MODE"
|
|
cargo build --release -p podcasts-gtk && cp $1/target/release/podcasts-gtk $2
|
|
fi |