diff options
author | David Robillard <d@drobilla.net> | 2021-01-09 19:17:31 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-03-07 15:32:23 -0500 |
commit | b9d0b9f058807d7253e88d37822c47b5462b65ea (patch) | |
tree | 680357643905465c27857a1f3709ce3518ad7f82 /waf | |
parent | 4c663def32cb6c360ab3d9e2f101c903583d1486 (diff) | |
download | serd-b9d0b9f058807d7253e88d37822c47b5462b65ea.tar.gz serd-b9d0b9f058807d7253e88d37822c47b5462b65ea.tar.bz2 serd-b9d0b9f058807d7253e88d37822c47b5462b65ea.zip |
WIP: 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() |