Make Godot compile on FreeBSD

This commit is contained in:
MBCX
2024-12-05 10:04:25 -04:00
parent 1f47e4c4e3
commit 6bc80effbb
5 changed files with 34 additions and 2 deletions

View File

@@ -1,4 +1,8 @@
def can_build(env, platform):
import sys
if sys.platform.startswith("freebsd"):
return False
return platform == "macos" or platform == "windows" or platform == "linuxbsd"