mirror of
https://github.com/godotengine/webrtc-native.git
synced 2026-01-03 14:09:58 +03:00
9 lines
268 B
Python
9 lines
268 B
Python
|
|
def exists(env):
|
|
return True
|
|
|
|
|
|
def generate(env):
|
|
env["DEPS_SOURCE"] = env.Dir("#thirdparty").abspath
|
|
env["DEPS_BUILD"] = env.Dir("#bin/thirdparty").abspath + "/{}.{}.dir".format(env["suffix"][1:], "RelWithDebInfo" if env["debug_symbols"] else "Release")
|