summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.rs b/build.rs
index 52d9f76..9a45016 100644
--- a/build.rs
+++ b/build.rs
@@ -1,5 +1,9 @@
fn main() {
println!("cargo:rerun-if-changed=src/pagespec.lalrpop");
+ println!("building parser with larlpop");
lalrpop::process_root().unwrap();
+ println!("built parser with larlpop successfully");
+ println!("generating code with Subplot");
subplot_build::codegen("riki.subplot").expect("failed to generate code with Subplot");
+ println!("generated code with Subplot successfully");
}