summaryrefslogtreecommitdiff
path: root/build.rs
blob: 7e3f139f19d8248d9dae1d7d63b8c1bef60f7a67 (plain)
1
2
3
4
5
6
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");
}