Refactored batch files.

This commit is contained in:
Samuel Guerra 2020-07-29 19:59:16 -03:00
parent ad3130fa2c
commit 4a310a956d
10 changed files with 11 additions and 6 deletions

1
c-doc.bat Normal file
View File

@ -0,0 +1 @@
cargo +nightly doc --no-deps --all-features %*

8
c-expand-dump.bat Normal file
View File

@ -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
)

1
c-profile.bat Normal file
View File

@ -0,0 +1 @@
cargo run --release --features app_profiler --example %*

1
c-run.bat Normal file
View File

@ -0,0 +1 @@
cargo run --example %*

View File

@ -1 +0,0 @@
cargo +nightly doc --no-deps --all-features --open

View File

@ -1 +0,0 @@
cargo +nightly doc --no-deps --all-features

View File

@ -1 +0,0 @@
cargo +nightly rustc --example button --profile=check -- -Zunstable-options --pretty=expanded > dump.rs

View File

@ -1 +0,0 @@
cargo +nightly rustc --profile=check -- -Zunstable-options --pretty=expanded > dump.rs

View File

@ -1 +0,0 @@
cargo run --example button --release --features app_profiler

View File

@ -1 +0,0 @@
cargo run --example focus