excluded linux commands for android target?

This commit is contained in:
2026-04-03 21:22:55 +02:00
parent 4ba117e467
commit bd8ee0afae

View File

@@ -252,7 +252,7 @@ impl Slime for GpuSlime {
} }
} }
#[cfg(target_os = "linux")] #[cfg(all(target_os = "linux", not(target_os = "android")))]
{ {
use std::process::Command; use std::process::Command;
@@ -372,7 +372,7 @@ impl Slime for NetworkSlime {
} }
} }
#[cfg(target_os = "linux")] #[cfg(all(target_os = "linux", not(target_os = "android")))]
{ {
use std::process::Command; use std::process::Command;
@@ -443,7 +443,7 @@ impl Slime for AudioSlime {
} }
} }
#[cfg(target_os = "linux")] #[cfg(all(target_os = "linux", not(target_os = "android")))]
{ {
use std::process::Command; use std::process::Command;