Go to file
Thomas Nagy 30336cd9ba
Reverted the changes to conf.check(header_name=) as this causes regressions. Use conf.check(header_name=, link_header_test=False) - #1647
2015-10-26 22:44:39 +01:00
build_system_kit Initial commit 2011-09-10 11:13:51 +02:00
demos docs - write a newline in example file to remove warning with solaris compilers 2015-10-10 09:20:55 +02:00
docs Make theme selection also work with older Sphinx. 2015-10-24 15:26:46 +02:00
playground Merge pull request #1630 from shoover/playground 2015-10-03 08:31:36 +02:00
tests [macplist]: interpolate file 2015-06-14 15:53:46 -04:00
utils Update use_config - Issue 1608 2015-08-29 10:31:02 +02:00
waflib Reverted the changes to conf.check(header_name=) as this causes regressions. Use conf.check(header_name=, link_header_test=False) - #1647 2015-10-26 22:44:39 +01:00
zip waf-zip: zip-packed waf 2013-08-12 19:34:43 -04:00
.gitignore Revert the build* change to .gitignore since it's likely to have unintended side-effects on Windows. 2012-06-21 17:44:18 +02:00
ChangeLog Reverted the changes to conf.check(header_name=) as this causes regressions. Use conf.check(header_name=, link_header_test=False) - #1647 2015-10-26 22:44:39 +01:00
DEVEL Updated the apidocs and The Waf Book 2015-04-06 14:46:55 +02:00
README Updated the apidocs and The Waf Book 2015-04-06 14:46:55 +02:00
README.md docs 2015-06-21 22:43:19 +02:00
TODO Reverted the changes to conf.check(header_name=) as this causes regressions. Use conf.check(header_name=, link_header_test=False) - #1647 2015-10-26 22:44:39 +01:00
configure Update use_config - Issue 1608 2015-08-29 10:31:02 +02:00
waf-light waf 1.8.15 2015-10-16 23:34:02 +02:00
wscript waf 1.8.15 2015-10-16 23:34:02 +02:00

README.md

Waf is a Python-based framework for configuring, compiling and installing applications. Here are perhaps the most important features of Waf:

  • Automatic build order: the build order is computed from input and output files, among others
  • Automatic dependencies: tasks to execute are detected by hashing files and commands
  • Performance: tasks are executed in parallel automatically, the startup time is meant to be fast (separation between configuration and build)
  • Flexibility: new commands and tasks can be added very easily through subclassing, bottlenecks for specific builds can be eliminated through dynamic method replacement
  • Extensibility: though many programming languages and compilers are already supported by default, many others are available as extensions
  • IDE support: Eclipse, Visual Studio and Xcode project generators (waflib/extras/)
  • Documentation: the application is based on a robust model documented in The Waf Book and in the API docs
  • Python compatibility: cPython 2.5 to 3.4, Jython 2.5, IronPython, and Pypy

Waf is used in particular by innovative companies such as Avalanche Studios and by open-source projects such as the Samba project. Learn more about Waf by reading The Waf Book.

For researchers and build system writers, Waf also provides a framework for creating custom build systems and package distribution systems.

Download the project from our page on waf.io or from the mirror on freehackers.org.