• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Tools/H10-Nov-2019-

extras/H10-Nov-2019-

.gitignoreH A D10-Nov-201918

Build.pyH A D10-Nov-201942.4 KiB

COPYINGH A D10-Nov-20191.3 KiB

ConfigSet.pyH A D10-Nov-20198.1 KiB

Configure.pyH A D10-Nov-201918.4 KiB

Context.pyH A D10-Nov-201920.5 KiB

Errors.pyH A D10-Nov-20191.7 KiB

Logs.pyH A D10-Nov-20199.5 KiB

Node.pyH A D10-Nov-201924.9 KiB

Options.pyH A D10-Nov-201911.1 KiB

README.mdH A D10-Nov-2019995

Runner.pyH A D10-Nov-201916 KiB

Scripting.pyH A D10-Nov-201916.1 KiB

Task.pyH A D10-Nov-201938.6 KiB

TaskGen.pyH A D10-Nov-201926.1 KiB

Utils.pyH A D10-Nov-201924.8 KiB

__init__.pyH A D10-Nov-201971

ansiterm.pyH A D10-Nov-201910.7 KiB

fixpy2.pyH A D10-Nov-20191.4 KiB

processor.pyH A D10-Nov-20191.6 KiB

wafH A D10-Nov-2019691

README.md

1Autowaf
2=======
3
4This is autowaf, a bundle of waf and a few extensions intended to be easy to
5use directly as source code in a project.  Using this as a submodule or subtree
6named `waflib` in a project allows waf to be used without including binary
7encoded data in the waf script.  This gets along with revision control and
8distributions better, among other advantages, without losing
9self-containedness.
10
11To use this in a project, add this repository as a directory named `waflib` in
12the top level of the project, and link or copy `waf` to the top level.
13
14Two waf extras are also included: `autowaf.py` and `lv2.py`.
15
16The `autowaf.py` module is a kitchen sink of Python utilities for building
17consistent packages, and can be imported in a wcript as
18`waflib.extras.autowaf`.
19
20The `lv2.py` extra defines options for LV2 plugin installation paths.  It can
21be used by calling `opt.load('lv2')` and `conf.load('lv2')` in the appropriate
22locations in a wscript.
23
24 -- David Robillard <d@drobilla.net>
25