1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
// SPDX-License-Identifier: MIT OR Apache-2.0
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum Compiler {
    Msvc,
    Gcc,
    Clang,
}

include!(concat!(env!("OUT_DIR"), "/targets.rs"));

include!(concat!(env!("OUT_DIR"), "/host.rs"));