aboutsummaryrefslogtreecommitdiff
path: root/mingling_cli/build.rs
blob: b74d8a07e0d34eb6c4e2cdc007e13253caf75208 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
use mingling::build::analyze_and_build_type_mapping;

pub mod pre;

fn main() {
    // Perform path analysis and build type mapping table
    analyze_and_build_type_mapping().unwrap();

    // Generate lint registry
    pre::gen_mod_file().unwrap();
    pre::gen_lint_registry().unwrap();
}