Add wip android/ios lib builds

This commit is contained in:
Ethan O'Brien
2025-11-30 11:55:22 -06:00
parent 9a072823a0
commit d4a5f0dd11
8 changed files with 358 additions and 1 deletions

View File

@@ -1,4 +1,10 @@
#[cfg(not(feature = "library"))]
fn main() -> std::io::Result<()> {
ew::run_server(false)
}
#[cfg(feature = "library")]
fn main() {
panic!("Compiled with the library feature! You should load the shared object library and call the exported methods there.");
}