mirror of
https://github.com/rust-windowing/winit.git
synced 2026-09-02 06:40:06 -04:00
Use xbuild instead of cargo apk in the CI
In addition to cargo apk being deprecated, xbuild also has support for ios. Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
10
xbuild-target/Cargo.toml
Normal file
10
xbuild-target/Cargo.toml
Normal file
@@ -0,0 +1,10 @@
|
||||
[package]
|
||||
name = "xbuild-target"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies.winit]
|
||||
version = "0.29.1-beta"
|
||||
path = ".."
|
||||
features = ["android-game-activity"]
|
||||
|
||||
4
xbuild-target/README.md
Normal file
4
xbuild-target/README.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# xbuild-target
|
||||
|
||||
This is a crate that can be built via `x build` in order to simplify CI testing.
|
||||
|
||||
6
xbuild-target/src/main.rs
Normal file
6
xbuild-target/src/main.rs
Normal file
@@ -0,0 +1,6 @@
|
||||
fn main() {
|
||||
winit::event_loop::EventLoop::new()
|
||||
.unwrap()
|
||||
.run(|_, _, _| todo!())
|
||||
.ok();
|
||||
}
|
||||
Reference in New Issue
Block a user