mirror of
https://github.com/godotengine/godot.git
synced 2025-01-06 17:37:18 +08:00
11 lines
223 B
Python
11 lines
223 B
Python
def can_build(env, platform):
|
|
import sys
|
|
|
|
if sys.platform.startswith("freebsd"):
|
|
return False
|
|
return platform == "macos" or platform == "windows" or platform == "linuxbsd"
|
|
|
|
|
|
def configure(env):
|
|
pass
|