specify nightly toolchain in rust-toolchain.toml

not touching whatever the fuck build-release.bat is
This commit is contained in:
Morilli 2024-09-03 07:37:18 +02:00
parent 959484ee13
commit c80416245e
7 changed files with 7 additions and 6 deletions

View File

@ -4,7 +4,6 @@ version = "0.1.0"
authors = ["nattthebear <goyuken@gmail.com>"]
edition = "2018"
publish = false
#rust = "nightly"
[features]
no-dirty-detection = []

View File

@ -1,3 +1,3 @@
@cargo +nightly b --features "no-dirty-detection"
@cargo b --features "no-dirty-detection"
@copy target\debug\waterboxhost.dll ..\..\Assets\dll
@copy target\debug\waterboxhost.dll ..\..\output\dll

View File

@ -1,7 +1,7 @@
#!/bin/sh
if [ -z "$BIZHAWKBUILD_HOME" ]; then export BIZHAWKBUILD_HOME="$(realpath "$(dirname "$0")/../..")"; fi
cargo +nightly b --features "no-dirty-detection"
cargo b --features "no-dirty-detection"
cp target/debug/libwaterboxhost.so "$BIZHAWKBUILD_HOME/Assets/dll"
if [ -e "$BIZHAWKBUILD_HOME/output" ]; then

View File

@ -1,3 +1,3 @@
@cargo +nightly b
@cargo b
@copy target\debug\waterboxhost.dll ..\..\Assets\dll
@copy target\debug\waterboxhost.dll ..\..\output\dll

View File

@ -1,7 +1,7 @@
#!/bin/sh
if [ -z "$BIZHAWKBUILD_HOME" ]; then export BIZHAWKBUILD_HOME="$(realpath "$(dirname "$0")/../..")"; fi
cargo +nightly b
cargo b
cp target/debug/libwaterboxhost.so "$BIZHAWKBUILD_HOME/Assets/dll"
if [ -e "$BIZHAWKBUILD_HOME/output" ]; then

View File

@ -1,7 +1,7 @@
#!/bin/sh
if [ -z "$BIZHAWKBUILD_HOME" ]; then export BIZHAWKBUILD_HOME="$(realpath "$(dirname "$0")/../..")"; fi
cargo +nightly b --release
cargo b --release
cp target/release/libwaterboxhost.so "$BIZHAWKBUILD_HOME/Assets/dll"
if [ -e "$BIZHAWKBUILD_HOME/output" ]; then

View File

@ -0,0 +1,2 @@
[toolchain]
channel = "nightly"