Refactored batch files.
This commit is contained in:
parent
ad3130fa2c
commit
4a310a956d
|
@ -0,0 +1,8 @@
|
|||
@echo off
|
||||
IF [%1]==[] (
|
||||
cargo +nightly rustc --profile=check -- -Zunstable-options --pretty=expanded > dump.rs
|
||||
@echo expand ^*.rs ^> dump.rs
|
||||
) ELSE (
|
||||
cargo +nightly rustc --example %* --profile=check -- -Zunstable-options --pretty=expanded > dump.rs
|
||||
@echo expand %*.rs ^> dump.rs
|
||||
)
|
|
@ -0,0 +1 @@
|
|||
cargo run --release --features app_profiler --example %*
|
|
@ -1 +0,0 @@
|
|||
cargo +nightly doc --no-deps --all-features --open
|
|
@ -1 +0,0 @@
|
|||
cargo +nightly doc --no-deps --all-features
|
|
@ -1 +0,0 @@
|
|||
cargo +nightly rustc --example button --profile=check -- -Zunstable-options --pretty=expanded > dump.rs
|
|
@ -1 +0,0 @@
|
|||
cargo +nightly rustc --profile=check -- -Zunstable-options --pretty=expanded > dump.rs
|
|
@ -1 +0,0 @@
|
|||
cargo run --example button --release --features app_profiler
|
|
@ -1 +0,0 @@
|
|||
cargo run --example focus
|
Loading…
Reference in New Issue