summaryrefslogtreecommitdiff
path: root/support/texlab/build.rs
blob: 228a42992c0d65091524aa35ff66f0fcc967c128 (plain)
1
2
3
4
5
6
fn main() {
    lalrpop::Configuration::new()
        .generate_in_source_tree()
        .process()
        .unwrap();
}