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

fn main() {
    println!("{:#?}", std::env::vars());
    subplot_build::codegen(Path::new("pandoc-filter-diagram.md"))
        .expect("failed to generate code with Subplot");
}