summaryrefslogtreecommitdiffstats
path: root/openpgp/build.rs
blob: 760428539e4f9f6e8a571b45d2cf5dd088134789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
extern crate lalrpop;

// Rerun if any of these files change:
#[allow(dead_code)]
const SOURCE: [ &'static str; 2 ]
    = [ include_str!("src/message/grammar.lalrpop"),
        include_str!("src/tpk/grammar.lalrpop"),
      ];

fn main() {
    lalrpop::process_root().unwrap();
}