Add winit-wayland and softbuffer-wayland forked examples

This commit is contained in:
Jeremy Soller 2025-11-07 13:41:51 -07:00
parent 5473c78259
commit eb94689c23
No known key found for this signature in database
GPG Key ID: 670FDFB5428E05CA
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,14 @@
[source]
git = "https://github.com/jackpot51/softbuffer.git"
branch = "redox-wayland"
[build]
dependencies = [
"libwayland"
]
template = "custom"
script = """
DYNAMIC_INIT
export RUSTFLAGS="${RUSTFLAGS} -lffi"
cookbook_cargo_examples animation rectangle winit
"""

View File

@ -0,0 +1,14 @@
[source]
git = "https://github.com/jackpot51/winit.git"
branch = "redox-wayland"
[build]
dependencies = [
"libwayland"
]
template = "custom"
script = """
DYNAMIC_INIT
export RUSTFLAGS="${RUSTFLAGS} -lffi"
cookbook_cargo_examples application child_window control_flow dnd ime pump_events window
"""