specify nightly toolchain in rust-toolchain.toml
not touching whatever the fuck build-release.bat is
This commit is contained in:
parent
959484ee13
commit
c80416245e
|
@ -4,7 +4,6 @@ version = "0.1.0"
|
|||
authors = ["nattthebear <goyuken@gmail.com>"]
|
||||
edition = "2018"
|
||||
publish = false
|
||||
#rust = "nightly"
|
||||
|
||||
[features]
|
||||
no-dirty-detection = []
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
@cargo +nightly b
|
||||
@cargo b
|
||||
@copy target\debug\waterboxhost.dll ..\..\Assets\dll
|
||||
@copy target\debug\waterboxhost.dll ..\..\output\dll
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
[toolchain]
|
||||
channel = "nightly"
|
Loading…
Reference in New Issue