mirror of
https://github.com/rust-windowing/winit.git
synced 2026-09-02 14:50:04 -04:00
8
ios-xbuild-target/Cargo.toml
Normal file
8
ios-xbuild-target/Cargo.toml
Normal file
@@ -0,0 +1,8 @@
|
||||
[package]
|
||||
name = "ios-xbuild-target"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies.winit]
|
||||
version = "0.29.1-beta"
|
||||
path = ".."
|
||||
3
ios-xbuild-target/README.md
Normal file
3
ios-xbuild-target/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# ios-xbuild-target
|
||||
|
||||
This is a crate that can be built via `x build` in order to simplify CI testing.
|
||||
7
ios-xbuild-target/src/main.rs
Normal file
7
ios-xbuild-target/src/main.rs
Normal file
@@ -0,0 +1,7 @@
|
||||
fn main() {
|
||||
winit::event_loop::EventLoopBuilder::new()
|
||||
.build()
|
||||
.unwrap()
|
||||
.run(|_, _| todo!())
|
||||
.ok();
|
||||
}
|
||||
Reference in New Issue
Block a user