blob: 4bd5adad626ca0ba717d23cd7652b1929c69ec37 (
plain)
1
2
3
4
5
6
7
8
9
|
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"
)
|