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

Haiku: fix building with UNIX_ENABLED.

This commit is contained in:
Kostadin Damyanov
2015-05-25 03:49:24 +03:00
parent 4a56f72f5b
commit 4e07a2dea8
5 changed files with 26 additions and 6 deletions

View File

@@ -34,9 +34,11 @@ def configure(env):
env["bits"]="32"
env.Append(CPPPATH = ['#platform/haiku'])
# TODO: add clang and try gcc2 too
env["CC"] = "gcc-x86"
env["CXX"] = "g++-x86"
env.Append(CPPFLAGS = ['-DDEBUG_METHODS_ENABLED'])
env.Append(CPPFLAGS = ['-DDEBUG_METHODS_ENABLED'])
env.Append(CPPFLAGS = ['-DUNIX_ENABLED'])
#env.Append(LIBS = ['be'])
env.Append(LIBS = ['be'])