1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Haiku: Initial support.

This commit is contained in:
Kostadin Damyanov
2015-05-24 23:22:51 +03:00
parent f8f3362cab
commit 4a56f72f5b
7 changed files with 114 additions and 0 deletions

42
platform/haiku/detect.py Normal file
View File

@@ -0,0 +1,42 @@
import os
import sys
def is_active():
return True
def get_name():
return "Haiku"
def can_build():
if (os.name != "posix"):
return False
if (sys.platform == "darwin"):
return False
return True
def get_opts():
return []
def get_flags():
return [
('builtin_zlib', 'no')
]
def configure(env):
is64=sys.maxsize > 2**32
if (env["bits"]=="default"):
if (is64):
env["bits"]="64"
else:
env["bits"]="32"
env.Append(CPPPATH = ['#platform/haiku'])
env["CC"] = "gcc-x86"
env["CXX"] = "g++-x86"
env.Append(CPPFLAGS = ['-DDEBUG_METHODS_ENABLED'])
env.Append(CPPFLAGS = ['-DUNIX_ENABLED'])
#env.Append(LIBS = ['be'])