summaryrefslogtreecommitdiff
path: root/build.rs
blob: 04c4671ea436db1fcd53866509727b34cd585d32 (plain)
1
2
3
4
5
6
7
use std::path::Path;

fn main() {
    println!("cargo:rerun-if-changed=build.rs");
    subplot_build::codegen(Path::new("cachedir.md"))
        .expect("failed to generate code with Subplot");
}