Got include to work, but bindgen still errors out

This commit is contained in:
4bb4 2020-07-12 14:29:02 +02:00
parent 42adfb57fb
commit d1ce31d8cf
2 changed files with 28 additions and 6 deletions

View file

@ -8,6 +8,10 @@ license = "MIT/Apache-2.0"
categories = ["gui", "external-ffi-bindings"]
build = "build.rs"
[dependencies]
imgui-sys = { git = "https://github.com/Gekkio/imgui-rs/", branch = "master" }
imgui = { git = "https://github.com/Gekkio/imgui-rs/", branch = "master" }
[build-dependencies]
cc = "1.0"
imgui = { git = "https://github.com/aloucks/imgui-rs/", branch = "export_include" }
bindgen = "0.53.1"