blob: e96f978b4aa8284b917e049d0f09fbee954941e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
use mingling::build::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 ---------
}
|