fn main() {
protobuf_codegen::Codegen::new()
.pure()
.cargo_out_dir("protos_gen/")
.input("src/protos/perfetto_scx.proto")
.include("src/protos")
.run_from_script();
scx_utils::BpfBuilder::new()
.unwrap()
.enable_intf("src/bpf/intf.h", "bpf_intf.rs")
.enable_skel("src/bpf/main.bpf.c", "bpf")
.compile_link_gen()
.unwrap();
}