feat: subsystem toggling via feature, release mode console allocation with ANSI, desktop file subscriber

This commit is contained in:
Ryan Walters
2025-09-11 13:45:01 -05:00
parent d9ea79db74
commit f340de80f3
7 changed files with 160 additions and 124 deletions
+7
View File
@@ -51,4 +51,11 @@ fn main() {
writeln!(&mut file, "}};").unwrap();
println!("cargo:rerun-if-changed=assets/game/atlas.json");
#[cfg(target_os = "windows")]
{
if cfg!(any(feature = "force-console", debug_assertions)) {
println!("cargo:rustc-cfg=use_console");
}
}
}