summaryrefslogtreecommitdiff
path: root/tools/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/common.py')
-rw-r--r--tools/common.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/common.py b/tools/common.py
new file mode 100644
index 0000000..aa99c5c
--- /dev/null
+++ b/tools/common.py
@@ -0,0 +1,8 @@
+
+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")