mirror of
https://github.com/lotabout/skim.git
synced 2026-09-10 07:16:23 -04:00
13 lines
300 B
Rust
13 lines
300 B
Rust
#![allow(missing_docs)]
|
|
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) }
|
|
}
|
|
}
|