From c87821116dc15a306a423bb37dd7e9237fb541c3 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Mon, 17 Nov 2025 11:47:05 -0500 Subject: wasm: fix C_INCLUDE_PATH for non wasm builds --- game/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'game/Cargo.toml') diff --git a/game/Cargo.toml b/game/Cargo.toml index af4a533..0e64d0e 100644 --- a/game/Cargo.toml +++ b/game/Cargo.toml @@ -22,5 +22,5 @@ sdl = ["graphics/sdl"] static = ["graphics/static"] # desktop dependencies -[target.'cfg(not(target_arch = "wasm32"))'.dependencies] +[target.'cfg(any(target_os = "linux", target_os = "macos", target_os = "windows"))'.dependencies] argh.workspace = true -- cgit v1.2.3-freya