fn main() { cc::Build::new() .cpp(true) // Enable C++ compilation .file("src/cTest.cpp") // Specify the C++ file .compile("cTest"); // Name the compiled output }