tcpp 0.1.0

tcpp wrappings for c/cpp preprocessor
Documentation
1
2
3
4
5
6
7
use cc;

fn main() {
    cc::Build::new().cpp(true).warnings(false)
        .flag_if_supported("-std=c++14")
        .file("src/tcpp.cpp").compile("tcpp")
}