diff options
author | David Robillard <d@drobilla.net> | 2022-06-28 23:17:19 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-07-20 16:24:16 -0400 |
commit | 1e87b3ace42c1a51d8b8c6d09b4fa4d0d6025698 (patch) | |
tree | 862fbe1cd497a7782da1ab08ddd39ac548afd78b /waf | |
parent | 3ae22e31b51e920d22a4bebb211e82b5d7e7c3f2 (diff) | |
download | raul-1e87b3ace42c1a51d8b8c6d09b4fa4d0d6025698.tar.gz raul-1e87b3ace42c1a51d8b8c6d09b4fa4d0d6025698.tar.bz2 raul-1e87b3ace42c1a51d8b8c6d09b4fa4d0d6025698.zip |
Switch to meson build system
Diffstat (limited to 'waf')
-rwxr-xr-x | waf | 27 |
1 files changed, 0 insertions, 27 deletions
@@ -1,27 +0,0 @@ -#!/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() |