1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Wasm platform detection from target triple

This commit is contained in:
Brian Fiete 2022-04-18 12:47:27 -07:00
parent 42e837301b
commit 2652203597

View file

@ -44,6 +44,9 @@ namespace IDE.Util
case "android",
"androideabi":
return .Android;
case "wasm32",
"wasm64":
return .Wasm;
}
}