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

..03-May-2022-

Tools/H03-May-2022-13,50810,816

extras/H03-May-2022-20,88016,176

Build.pyH A D07-Jan-202142.5 KiB1,5151,228

COPYINGH A D14-Feb-20201.3 KiB2621

ConfigSet.pyH A D14-Feb-20208.1 KiB362296

Configure.pyH A D07-Jan-202118.7 KiB657520

Context.pyH A D07-Jan-202120.7 KiB748620

Errors.pyH A D14-Feb-20201.7 KiB6954

Logs.pyH A D14-Feb-20209.5 KiB383313

Node.pyH A D14-Feb-202024.9 KiB970801

Options.pyH A D07-Jan-202111.7 KiB360290

README.mdH A D14-Feb-2020995 2518

Runner.pyH A D14-Feb-202016 KiB623506

Scripting.pyH A D07-Jan-202116.2 KiB626513

Task.pyH A D14-Feb-202038.6 KiB1,4071,147

TaskGen.pyH A D14-Feb-202026.1 KiB918741

Utils.pyH A D26-Apr-202024.8 KiB1,036864

__init__.pyH A D14-Feb-202071 40

ansiterm.pyH A D14-Feb-202010.7 KiB343279

fixpy2.pyH A D14-Feb-20201.4 KiB6548

processor.pyH A D14-Feb-20201.6 KiB6953

wafH A D26-Apr-2020709 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