chuniio-rs/build.rs

10 lines
267 B
Rust
Raw Permalink Normal View History

2023-12-27 12:34:45 +00:00
use cfg_aliases::cfg_aliases;
fn main() {
cfg_aliases! {
chuni: { not(feature = "chusan") },
amdaemon: { all(feature = "chusan", target_pointer_width = "64") },
chusanapp: { all(feature = "chusan", target_pointer_width = "32") },
}
}