Redox OS support (#2588)
* Add Redox OS support * Simplify control flow usage * Apply more recommendations * Update naming to indicate that Orbital is a platform * Adjust import order
This commit is contained in:
parent
2f52c23fa9
commit
66ca445caa
18 changed files with 1476 additions and 85 deletions
|
|
@ -21,6 +21,8 @@ pub mod android;
|
|||
pub mod ios;
|
||||
#[cfg(macos_platform)]
|
||||
pub mod macos;
|
||||
#[cfg(orbital_platform)]
|
||||
pub mod orbital;
|
||||
#[cfg(wayland_platform)]
|
||||
pub mod wayland;
|
||||
#[cfg(wasm_platform)]
|
||||
|
|
@ -35,6 +37,7 @@ pub mod x11;
|
|||
macos_platform,
|
||||
android_platform,
|
||||
x11_platform,
|
||||
wayland_platform
|
||||
wayland_platform,
|
||||
orbital_platform
|
||||
))]
|
||||
pub mod run_return;
|
||||
|
|
|
|||
1
src/platform/orbital.rs
Normal file
1
src/platform/orbital.rs
Normal file
|
|
@ -0,0 +1 @@
|
|||
// There are no Orbital specific traits yet.
|
||||
Loading…
Add table
Add a link
Reference in a new issue