summaryrefslogtreecommitdiffstats
path: root/waf
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-07 13:15:20 -0400
committerDavid Robillard <d@drobilla.net>2022-08-18 02:31:59 -0400
commit6ef785fad5cb4e9c162f295d7434d5690a13d029 (patch)
tree2d645f1efa9df5e2dab56b76a5c0cbef941d2178 /waf
parentf31d96e901bfdbe5f05dc9ae077203c58a9f715a (diff)
downloaddrobillad-6ef785fad5cb4e9c162f295d7434d5690a13d029.tar.gz
drobillad-6ef785fad5cb4e9c162f295d7434d5690a13d029.tar.bz2
drobillad-6ef785fad5cb4e9c162f295d7434d5690a13d029.zip
Switch to meson build system
Diffstat (limited to 'waf')
-rwxr-xr-xwaf16
1 files changed, 0 insertions, 16 deletions
diff --git a/waf b/waf
deleted file mode 100755
index e22930a..0000000
--- a/waf
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env python
-
-# Minimal waf script for projects that include waflib directly
-
-from waflib import Context, Scripting
-
-import inspect
-import os
-
-def main():
- script_path = os.path.abspath(inspect.getfile(inspect.getmodule(main)))
- project_path = os.path.dirname(script_path)
- Scripting.waf_entry_point(os.getcwd(), Context.WAFVERSION, project_path)
-
-if __name__ == '__main__':
- main()