#build-dependencies #cmake #running #native

build cmk

A build dependency for running cmake to build a native library

3 releases

0.1.2 Oct 9, 2024
0.1.1 Oct 9, 2024
0.1.0 Oct 8, 2024

#166 in Build Utils

Download history 497/week @ 2024-10-06 101/week @ 2024-10-13 3051/week @ 2024-10-20 6809/week @ 2024-10-27 7343/week @ 2024-11-03 5554/week @ 2024-11-10 10828/week @ 2024-11-17

32,193 downloads per month
Used in 54 crates (via fltk-sys)

MIT license

9KB
157 lines

cmk

A simpler implementation of cmake-rs which assumes a recent enough version of CMake.

Usage

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

Example

// build.rs
fn main() {
    let dst = cmk::Config::new("cpplib")
        .generator("Ninja")
        .profile("Release")
        .define("SOME_CMAKE_OPTION", "ON")
        .build();
    println!("cargo:rustc-link-search=native={}", dst.display());
    println!("cargo:rustc-link-lib=static=cpplib");
}

No runtime deps