Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
dylib (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr authored Jul 14, 2021
1 parent 8df5d94 commit de2c879
Show file tree
Hide file tree
Showing 5 changed files with 88 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
target
Cargo.lock
.vscode
.vs
83 changes: 83 additions & 0 deletions direct2d/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion direct2d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ version = "0.0.0"
edition = "2018"

[dependencies]
windows = "0.17.2"
windows = { git = "https://github.com/microsoft/windows-rs", features = ["raw_dylib"] }
bindings = { path = "bindings" }
4 changes: 2 additions & 2 deletions direct2d/bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.0"
edition = "2018"

[dependencies]
windows = "0.17.2"
windows = { git = "https://github.com/microsoft/windows-rs", features = ["raw_dylib"] }

[build-dependencies]
windows = "0.17.2"
windows = { git = "https://github.com/microsoft/windows-rs", features = ["raw_dylib"] }
2 changes: 2 additions & 0 deletions direct2d/bindings/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
#![allow(incomplete_features)]
#![feature(raw_dylib)]
windows::include_bindings!();

0 comments on commit de2c879

Please sign in to comment.