aboutsummaryrefslogtreecommitdiff
path: root/waf
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-04-02 20:51:37 +0200
committerDavid Robillard <d@drobilla.net>2020-04-02 20:53:37 +0200
commit9c750a5fd75b7b63032f8369cf63fbfdcdf0157f (patch)
tree7f4c65c28e6ba92be8bc7c6a23254d74eb97787f /waf
parentac77923e2233547122343c9dcdb89be81bde896b (diff)
Switch to a submodule for autowaf and update to waf 2.0.19
Diffstat (limited to 'waf')
-rwxr-xr-xwaf27
1 files changed, 27 insertions, 0 deletions
diff --git a/waf b/waf
new file mode 100755
index 0000000..58d14c3
--- /dev/null
+++ b/waf
@@ -0,0 +1,27 @@
+#!/usr/bin/env python
+
+# Minimal waf script for projects that include waflib directly
+
+import sys
+import inspect
+import os
+
+try:
+ from waflib import Context, Scripting
+except Exception as e:
+ sys.stderr.write('error: Failed to import waf (%s)\n' % e)
+ if os.path.exists('.git'):
+ sys.stderr.write("Are submodules up to date? "
+ "Try 'git submodule update --init --recursive'\n")
+
+ sys.exit(1)
+
+
+def main():
+ script_path = os.path.abspath(inspect.getfile(inspect.getmodule(main)))
+ project_path = os.path.dirname(os.path.realpath(script_path))
+ Scripting.waf_entry_point(os.getcwd(), Context.WAFVERSION, project_path)
+
+
+if __name__ == '__main__':
+ main()