diff options
author | David Robillard <d@drobilla.net> | 2022-07-14 11:50:43 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-07-18 20:18:28 -0400 |
commit | 55dc97a32eeeb42012ce1e7d28ed99ea537f4d2f (patch) | |
tree | c0fc78d78609c1bd3e880499bd0e80a4498b0be3 /waf | |
parent | 891f4044c92117517041c9e7ee4099b75bd493da (diff) | |
download | lilv-55dc97a32eeeb42012ce1e7d28ed99ea537f4d2f.tar.gz lilv-55dc97a32eeeb42012ce1e7d28ed99ea537f4d2f.tar.bz2 lilv-55dc97a32eeeb42012ce1e7d28ed99ea537f4d2f.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(script_path) - Scripting.waf_entry_point(os.getcwd(), Context.WAFVERSION, project_path) - - -if __name__ == '__main__': - main() |