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

..03-May-2022-

Tools/H10-Nov-2019-13,46910,782

extras/H10-Nov-2019-19,69615,276

.gitignoreH A D10-Nov-201918 32

Build.pyH A D10-Nov-201942.4 KiB1,5131,226

COPYINGH A D10-Nov-20191.3 KiB2621

ConfigSet.pyH A D10-Nov-20198.1 KiB362296

Configure.pyH A D10-Nov-201918.4 KiB650515

Context.pyH A D10-Nov-201920.5 KiB738612

Errors.pyH A D10-Nov-20191.7 KiB6954

Logs.pyH A D10-Nov-20199.5 KiB383313

Node.pyH A D10-Nov-201924.9 KiB970801

Options.pyH A D10-Nov-201911.1 KiB343275

README.mdH A D10-Nov-2019995 2518

Runner.pyH A D10-Nov-201916 KiB623506

Scripting.pyH A D10-Nov-201916.1 KiB626513

Task.pyH A D10-Nov-201938.6 KiB1,4071,147

TaskGen.pyH A D10-Nov-201926.1 KiB918741

Utils.pyH A D10-Nov-201924.8 KiB1,036864

__init__.pyH A D10-Nov-201971 40

ansiterm.pyH A D10-Nov-201910.7 KiB343279

fixpy2.pyH A D10-Nov-20191.4 KiB6548

processor.pyH A D10-Nov-20191.6 KiB6953

wafH A D10-Nov-2019691 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