cir 0.1.0

Linux Infrared Tooling
Documentation
1
2
3
4
5
6
7
use std::env;
use std::path::PathBuf;

fn main() {
    let out_dir = env::var("OUT_DIR").unwrap();
    lrpeg::process_files(&PathBuf::from("src"), &PathBuf::from(out_dir));
}