summaryrefslogtreecommitdiffstats
path: root/gfx/qcms/build.rs
blob: 6810a8828edeb07b4339c8be53e298c3b53f0dcf (plain)
1
2
3
4
5
6
7
extern crate version_check as rustc;

fn main() {
    if rustc::is_min_version("1.78.0").unwrap_or(false) {
        println!("cargo:rustc-cfg=stdsimd_split");
    }
}