Skip to content

Commit

Permalink
tool_registry
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Jun 14, 2024
1 parent 3f1166b commit 192306b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
4 changes: 0 additions & 4 deletions crates/libs/registry/tests/bindings.rs

This file was deleted.

8 changes: 8 additions & 0 deletions crates/tools/registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
name = "tool_registry"
version = "0.0.0"
edition = "2021"
publish = false

[dependencies]
windows-bindgen = { path = "../../libs/bindgen" }
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
--out src/bindings.rs
--out crates/libs/registry/src/bindings.rs
--config flatten sys minimal no-bindgen-comment

--filter
Expand Down
6 changes: 6 additions & 0 deletions crates/tools/registry/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
use windows_bindgen::*;

fn main() -> Result<()> {
bindgen(["--etc", "crates/tools/registry/src/bindings.txt"])?;
Ok(())
}

0 comments on commit 192306b

Please sign in to comment.