summaryrefslogtreecommitdiff
path: root/rola-cli/build.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-30 06:01:32 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-30 06:01:32 +0800
commit8cbba8dc8900b98e23e6ee38d6f02537ba936c1c (patch)
treec5f333d67871d25833b5ddc96f1d9aae9dcdd603 /rola-cli/build.rs
parent40183e431da97fe0377b2f2e2ea47b3a14376680 (diff)
refactor(rola-cli): replace GeneralRenderer with StructuralRenderer andHEADmaster
use public modules
Diffstat (limited to 'rola-cli/build.rs')
-rw-r--r--rola-cli/build.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/rola-cli/build.rs b/rola-cli/build.rs
index a409a17..e49c689 100644
--- a/rola-cli/build.rs
+++ b/rola-cli/build.rs
@@ -1,11 +1,12 @@
use std::path::Path;
use std::process::Command;
-use mingling::build::build_comp_scripts;
+use mingling::build::{analyze_and_build_type_mapping, build_comp_scripts};
fn main() {
build_version_info();
build_completion();
+ analyze_and_build_type_mapping().unwrap();
}
fn build_version_info() {