1
0
mirror of https://github.com/timvisee/lazymc.git synced 2025-07-30 03:31:59 -07:00
Files
lazymc/build.rs

8 lines
192 B
Rust

fn main() {
// Must enable rcon on Windows
#[cfg(all(windows, not(feature = "rcon")))]
{
println!("cargo:warning=lazymc: you must enable rcon feature on Windows");
}
}