51 releases

0.1.50 Mar 28, 2023
0.1.49 Oct 29, 2022
0.1.48 Jan 6, 2022
0.1.46 Oct 11, 2021
0.1.1 Jul 31, 2015

#3 in Build Utils

Download history 362009/week @ 2023-11-26 372590/week @ 2023-12-03 341911/week @ 2023-12-10 329638/week @ 2023-12-17 175359/week @ 2023-12-24 261138/week @ 2023-12-31 352232/week @ 2024-01-07 342057/week @ 2024-01-14 370101/week @ 2024-01-21 354474/week @ 2024-01-28 359635/week @ 2024-02-04 363839/week @ 2024-02-11 371917/week @ 2024-02-18 378897/week @ 2024-02-25 351724/week @ 2024-03-03 122496/week @ 2024-03-10

1,249,940 downloads per month
Used in 2,352 crates (479 directly)

MIT/Apache

45KB
801 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

~170KB