1// SPDX-License-Identifier: MIT OR Apache-2.0 2#[derive(Copy, Clone, Debug, Eq, PartialEq)] 3pub enum Compiler { 4 Msvc, 5 Gcc, 6 Clang, 7} 8 9include!(concat!(env!("OUT_DIR"), "/targets.rs")); 10 11include!(concat!(env!("OUT_DIR"), "/host.rs"));