diff options
author | David Robillard <d@drobilla.net> | 2022-07-03 20:47:34 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-07-18 20:16:10 -0400 |
commit | 75e647def0f67647ec7ba1405e26d809a87c62fc (patch) | |
tree | 13a73ca75976824ba991c8c7d235830ce663c1e8 /waf | |
parent | ed283b838681ed3fb28e94140a6dc5172945776f (diff) | |
download | sratom-75e647def0f67647ec7ba1405e26d809a87c62fc.tar.gz sratom-75e647def0f67647ec7ba1405e26d809a87c62fc.tar.bz2 sratom-75e647def0f67647ec7ba1405e26d809a87c62fc.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() |