diff options
author | David Robillard <d@drobilla.net> | 2021-01-09 19:17:31 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-13 15:18:17 -0500 |
commit | 7d2183d13b298f33733e67184dd86a34a71723bf (patch) | |
tree | bcc350350d64ebe31d18403df497fffe398f0070 /waf | |
parent | 17357d578b14111ce694f8af8d70e7c65c863ad3 (diff) | |
download | serd-7d2183d13b298f33733e67184dd86a34a71723bf.tar.gz serd-7d2183d13b298f33733e67184dd86a34a71723bf.tar.bz2 serd-7d2183d13b298f33733e67184dd86a34a71723bf.zip |
Switch to Meson
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(script_path) - Scripting.waf_entry_point(os.getcwd(), Context.WAFVERSION, project_path) - - -if __name__ == '__main__': - main() |