aboutsummaryrefslogtreecommitdiff
path: root/examples/example-pathfinder/build.rs
blob: 1dcc2fc12e355bee19691b84462c377a4099f6e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
use mingling::builds::analyze_and_build_type_mapping;

fn main() {
    // --------- IMPORTANT ---------
    // Use this method in build.rs,
    //   to analyze the project structure at build time,
    //   and automatically introduce members from other modules into gen_program!()
    analyze_and_build_type_mapping().unwrap();
    // --------- IMPORTANT ---------
}