cpp_new_simple_cpp_lib 0.1.0

Test crate required for cpp_new
Documentation
1
2
3
4
5
6
7
8
extern crate cc;

fn main() {
    cc::Build::new()
        .file("src/lib.cpp")
        .cpp(true)
        .compile("cpp_new_simple_cpp_lib");
}