chuniio-rs/build.rs
2023-12-27 19:34:45 +07:00

10 lines
267 B
Rust

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") },
}
}