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

..22-Dec-2021-

Tools/H22-Dec-2021-13,46910,782

extras/H22-Dec-2021-19,66115,248

Build.pyH A D22-Dec-202142.4 KiB1,5131,226

COPYINGH A D22-Dec-20211.3 KiB2621

ConfigSet.pyH A D22-Dec-20218.1 KiB362296

Configure.pyH A D22-Dec-202118.4 KiB650515

Context.pyH A D22-Dec-202120.5 KiB738612

Errors.pyH A D22-Dec-20211.7 KiB6954

Logs.pyH A D22-Dec-20219.5 KiB383313

Node.pyH A D22-Dec-202124.9 KiB970801

Options.pyH A D22-Dec-202111.1 KiB343275

README.mdH A D22-Dec-2021995 2518

Runner.pyH A D22-Dec-202116 KiB623506

Scripting.pyH A D22-Dec-202116.1 KiB626513

Task.pyH A D22-Dec-202138.6 KiB1,4071,147

TaskGen.pyH A D22-Dec-202126.1 KiB918741

Utils.pyH A D22-Dec-202124.8 KiB1,036864

__init__.pyH A D22-Dec-202171 40

ansiterm.pyH A D22-Dec-202110.7 KiB343279

fixpy2.pyH A D22-Dec-20211.4 KiB6548

processor.pyH A D22-Dec-20211.6 KiB6953

wafH A D22-Dec-2021691 2817

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