Crates.io | playdate-bindgen-cfg |
lib.rs | playdate-bindgen-cfg |
version | |
source | src |
created_at | 2023-10-05 15:21:38.875694+00 |
updated_at | 2025-03-29 20:43:33.233638+00 |
description | Minimal configuration for playdate-bindgen. |
homepage | https://github.com/boozook/playdate |
repository | https://github.com/boozook/playdate.git |
max_upload_size | |
id | 994225 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Lightweight util for build-scripts to configure and execute playdate-bindgen used to generate bindings to Playdate with extras.
Cargo.toml:
[build-dependencies.bindgen]
package = "playdate-bindgen-cfg"
version = "*"
Add this to build-dependencies
and add to your build-script something like this:
let mut cfg = bindgen::Cfg::default();
cfg.output = Some("some/output/path.rs");
let pdbindgen_found = bindgen::Runner::find_tool(&cfg); // find existing pdbindgen (path, version)
let sdk_version = bindgen::Runner::find_sdk_version(&cfg); // execute pdbindgen to find SDK properly
let result = bindgen::Runner::gen_cmd(&cfg); // execute pdbindgen to generate bindings
For complex examples see build-script in the playdate-sys crate.
This software is not sponsored or supported by Panic.