summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2023-04-09 14:38:27 +0300
committerLars Wirzenius <liw@liw.fi>2023-04-10 09:56:15 +0300
commited827859f36ff5cc9b2360284b92cb56c5b88d41 (patch)
tree674e238696fb94ececaedb2a2ab7d84c086f9c60 /build.rs
parent87b6778163210748e1c80368cd5ca91afa4a07b9 (diff)
downloadriki-ed827859f36ff5cc9b2360284b92cb56c5b88d41.tar.gz
refactor: use html-page crate to represent HTML
Sponsored-by: author
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");
}