31 lines
1.1 KiB
Rust
Raw Normal View History

2020-03-26 13:57:37 +01:00
fn main() {
cc::Build::new()
.file("foo.c")
.compile("foo_c");
2020-03-27 11:24:17 +01:00
cc::Build::new()
.file("foo_asm.s")
.compile("foo_asm");
2020-03-27 11:24:17 +01:00
cc::Build::new()
.cpp(true)
.cpp_set_stdlib(None)
.file("foo_cxx.cpp")
.compile("foo_cxx");
2020-03-27 14:19:07 +01:00
// When the cmake crate detects the clang compiler, it passes the
// "--target" argument to the linker which subsequently fails. The
// `CMAKE_C_COMPILER_FORCED` option makes sure that `cmake` does not
// tries to test the compiler. From version 3.6 the option
// `CMAKE_TRY_COMPILE_TARGET_TYPE=STATIC_LIBRARY` can be used
// https://cmake.org/cmake/help/v3.5/module/CMakeForceCompiler.html
let dst = cmake::Config::new("libcmake_foo")
.build_target("cmake_foo")
.define("CMAKE_C_COMPILER_FORCED", "1")
.define("CMAKE_CXX_COMPILER_FORCED", "1")
.define("CMAKE_TRY_COMPILE_TARGET_TYPE=STATIC_LIBRARY", "1")
.build();
println!("cargo:rustc-link-search=native={}/build/", dst.display());
println!("cargo:rustc-link-lib=static=cmake_foo");
2020-03-26 13:57:37 +01:00
}