52 releases

0.1.51 Aug 15, 2024
0.1.50 Mar 28, 2023
0.1.49 Oct 29, 2022
0.1.48 Jan 6, 2022
0.1.1 Jul 31, 2015

#3 in Build Utils

Download history 485959/week @ 2024-07-18 504185/week @ 2024-07-25 486519/week @ 2024-08-01 529636/week @ 2024-08-08 532641/week @ 2024-08-15 553319/week @ 2024-08-22 527155/week @ 2024-08-29 585545/week @ 2024-09-05 549404/week @ 2024-09-12 558357/week @ 2024-09-19 587171/week @ 2024-09-26 600449/week @ 2024-10-03 592214/week @ 2024-10-10 640957/week @ 2024-10-17 661615/week @ 2024-10-24 596590/week @ 2024-10-31

2,612,055 downloads per month
Used in 2,833 crates (566 directly)

MIT/Apache

45KB
802 lines

cmake

Documentation

A build dependency for running the cmake build tool to compile a native library.

# Cargo.toml
[build-dependencies]
cmake = "0.1"

The CMake executable is assumed to be cmake unless the CMAKE environmental variable is set.

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in cmake by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

A build dependency for running cmake to build a native library

This crate provides some necessary boilerplate and shim support for running the system cmake command to build a native library. It will add appropriate cflags for building code to link into Rust, handle cross compilation, and use the necessary generator for the platform being targeted.

The builder-style configuration allows for various variables and such to be passed down into the build as well.

Installation

Add this to your Cargo.toml:

[build-dependencies]
cmake = "0.1"

Examples

use cmake;

// Builds the project in the directory located in `libfoo`, installing it
// into $OUT_DIR
let dst = cmake::build("libfoo");

println!("cargo:rustc-link-search=native={}", dst.display());
println!("cargo:rustc-link-lib=static=foo");
use cmake::Config;

let dst = Config::new("libfoo")
                 .define("FOO", "BAR")
                 .cflag("-foo")
                 .build();
println!("cargo:rustc-link-search=native={}", dst.display());
println!("cargo:rustc-link-lib=static=foo");

Dependencies

~215–305KB