first pass of merging in warp (doesn't build)

This commit is contained in:
Ryan Ward
2026-07-01 16:08:58 -05:00
parent 2f64909469
commit 4770ac06b5
3662 changed files with 414574 additions and 89772 deletions
+3 -4
View File
@@ -1,5 +1,5 @@
pub mod app;
#[cfg(target_os = "linux")]
#[cfg(any(target_os = "linux", target_os = "freebsd"))]
pub mod linux;
#[cfg(target_os = "macos")]
pub mod mac;
@@ -14,7 +14,7 @@ pub mod current {
cfg_if::cfg_if! {
if #[cfg(target_family = "wasm")] {
pub use super::wasm::*;
} else if #[cfg(target_os = "linux")] {
} else if #[cfg(any(target_os = "linux", target_os = "freebsd"))] {
pub use super::linux::*;
} else if #[cfg(target_os = "macos")] {
pub use super::mac::*;
@@ -26,9 +26,8 @@ pub mod current {
}
}
pub use galaxyui_core::platform::*;
pub use app::AppBuilder;
pub use galaxyui_core::platform::*;
/// Returns whether the current device is a mobile device with touch input.
///