craydate-build 0.1.2

Build script helpers for the craydate crate.
1
2
3
4
5
6
#[cfg(target_os = "windows")]
pub const SIMULATOR_EXE: &str = "PlaydateSimulator.exe";
#[cfg(target_os = "mac")]
pub const SIMULATOR_EXE: &str = compiler_error!("What is the simulator execuable name?");
#[cfg(target_os = "linux")]
pub const SIMULATOR_EXE: &str = compiler_error!("What is the simulator execuable name?");