mirror of
https://github.com/bevyengine/bevy
synced 2025-01-02 00:08:53 +00:00
40 lines
876 B
Rust
40 lines
876 B
Rust
|
use bitflags::bitflags;
|
||
|
|
||
|
mod examples;
|
||
|
mod features;
|
||
|
|
||
|
bitflags! {
|
||
|
struct Command: u32 {
|
||
|
const CHECK_MISSING = 0b00000001;
|
||
|
const UPDATE = 0b00000010;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
bitflags! {
|
||
|
struct Target: u32 {
|
||
|
const EXAMPLES = 0b00000001;
|
||
|
const FEATURES = 0b00000010;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let what_to_run = match std::env::args().nth(1).as_deref() {
|
||
|
Some("check-missing") => Command::CHECK_MISSING,
|
||
|
Some("update") => Command::UPDATE,
|
||
|
_ => Command::all(),
|
||
|
};
|
||
|
|
||
|
let target = match std::env::args().nth(2).as_deref() {
|
||
|
Some("examples") => Target::EXAMPLES,
|
||
|
Some("features") => Target::FEATURES,
|
||
|
_ => Target::all(),
|
||
|
};
|
||
|
|
||
|
if target.contains(Target::EXAMPLES) {
|
||
|
examples::check(what_to_run);
|
||
|
}
|
||
|
if target.contains(Target::FEATURES) {
|
||
|
features::check(what_to_run);
|
||
|
}
|
||
|
}
|