diff options
author | David Robillard <d@drobilla.net> | 2019-04-21 23:11:29 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-04-21 23:11:29 +0200 |
commit | 597f75edb33f8733f1c2cc9613b37b843e38235e (patch) | |
tree | 1626bed2a167fa6d3d8fa6afdbba3af09726edff /waf | |
download | drobillad-597f75edb33f8733f1c2cc9613b37b843e38235e.tar.gz drobillad-597f75edb33f8733f1c2cc9613b37b843e38235e.tar.bz2 drobillad-597f75edb33f8733f1c2cc9613b37b843e38235e.zip |
Initial commit
Diffstat (limited to 'waf')
-rwxr-xr-x | waf | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +#!/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() |