summaryrefslogtreecommitdiff
path: root/build.rs
blob: c19be14c37c2427c139bf87bb28cc89be118fabd (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.subplot"))
        .expect("failed to generate code with Subplot");
}