mirror of
https://github.com/lotabout/skim.git
synced 2026-09-10 07:16:23 -04:00
12 lines
276 B
Rust
12 lines
276 B
Rust
use cfg_aliases::cfg_aliases;
|
|
|
|
fn main() {
|
|
// Setup cfg aliases
|
|
cfg_aliases! {
|
|
// Platforms
|
|
frizbee_simd: { any(target_arch = "x86_64", target_arch = "aarch64") },
|
|
// Backends
|
|
frizbee: { all(feature = "frizbee", frizbee_simd) }
|
|
}
|
|
}
|