You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-29 16:16:38 +00:00
committed by
Hein-Pieter van Braam
parent
675899a521
commit
44b206a3fa
@@ -1,4 +1,5 @@
|
||||
import os
|
||||
import platform
|
||||
import sys
|
||||
|
||||
|
||||
@@ -135,7 +136,12 @@ def configure(env):
|
||||
env.Append(CPPPATH=['#platform/server'])
|
||||
env.Append(CPPFLAGS=['-DSERVER_ENABLED', '-DUNIX_ENABLED'])
|
||||
env.Append(LIBS=['pthread'])
|
||||
env.Append(LIBS=['dl'])
|
||||
|
||||
if (platform.system() == "Linux"):
|
||||
env.Append(LIBS=['dl'])
|
||||
|
||||
if (platform.system().find("BSD") >= 0):
|
||||
env.Append(LIBS=['execinfo'])
|
||||
|
||||
# Link those statically for portability
|
||||
if env['use_static_cpp']:
|
||||
|
||||
Reference in New Issue
Block a user