Correctly generates bindings
This commit is contained in:
parent
6dcee4f70d
commit
ad8e1f28ec
6
.vscode/settings.json
vendored
Normal file
6
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"c-cpp-flylint.clang.includePaths": [
|
||||
"${workspaceFolder}/src",
|
||||
"${workspaceFolder}/third_party/raylib/src",
|
||||
],
|
||||
}
|
27
build.rs
Normal file
27
build.rs
Normal file
@ -0,0 +1,27 @@
|
||||
use std::path::PathBuf;
|
||||
|
||||
use bindgen::Bindings;
|
||||
|
||||
fn generate_bindings(header_file: &str) {
|
||||
|
||||
// Generate the data
|
||||
let bindings = bindgen::Builder::default()
|
||||
.header(header_file)
|
||||
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
|
||||
.generate()
|
||||
.expect("Unable to generate bindings");
|
||||
|
||||
// Write `src/bindings.rs`
|
||||
let out_path = PathBuf::from(std::env::var("OUT_DIR").unwrap());
|
||||
bindings
|
||||
.write_to_file(out_path.join("bindings.rs"))
|
||||
.expect("Couldn't write bindings!");
|
||||
}
|
||||
|
||||
pub fn main() {
|
||||
// Files to watch that should trigger a rebuild
|
||||
println!("cargo:rerun-if-changed=src/wrapper.h");
|
||||
|
||||
// Generate bindings
|
||||
generate_bindings("src/wrapper.h");
|
||||
}
|
@ -1 +1,7 @@
|
||||
#![doc = include_str!("../README.md")]
|
||||
#![doc = include_str!("../README.md")]
|
||||
#![allow(non_upper_case_globals)]
|
||||
#![allow(non_camel_case_types)]
|
||||
#![allow(non_snake_case)]
|
||||
|
||||
// Include the generated bindings
|
||||
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
|
3
src/wrapper.h
Normal file
3
src/wrapper.h
Normal file
@ -0,0 +1,3 @@
|
||||
// This file is used to inform bindgen about every header we need to parse
|
||||
|
||||
#include "../third_party/raylib/src/raylib.h"
|
Loading…
x
Reference in New Issue
Block a user