SCons: Disable server platform as it does not build

See #8361. [ci skip]
This commit is contained in:
Rémi Verschelde 2017-10-17 07:56:00 +02:00
parent 4fb5b1a211
commit 1b2e09355e

View file

@ -12,6 +12,9 @@ def get_name():
def can_build():
# Doesn't build against Godot 3.0 for now, disable to avoid confusing users
return False
if (os.name != "posix" or sys.platform == "darwin"):
return False