repc-impl 0.1.1

Implementation detail of the repc crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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"));

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