2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 18:07:12 +01:00
Go to file
Thiago da Silva Andrade Soares =^.~= 4bea5a28ae Cppcheck tool - Fix creation of invalid command on windows
The following error occurring when we try to run the cppcheck tool on windows.
As we see in the error message, the command is not well formed.

WafError:
    Command "['C:\\\\Program Files (x86)\\\\Cppcheck\\\\cppcheck.exe'] --inconclusive --report-progress --verbose --xml ..."
returned 1
2016-02-24 21:53:15 +01:00
build_system_kit Initial commit 2011-09-10 11:13:51 +02:00
demos cleanup 2016-01-22 20:05:54 +01:00
docs Changed the cwd - working folders must be given as node objects 2016-01-16 13:03:09 +01:00
playground typo 2016-01-27 23:53:23 +01:00
tests Exit status must be non-zero when tests fail 2016-02-19 22:29:01 +01:00
utils Update use_config - Issue 1608 2015-08-29 10:31:02 +02:00
waflib Cppcheck tool - Fix creation of invalid command on windows 2016-02-24 21:53:15 +01:00
zip waf-zip: zip-packed waf 2013-08-12 19:34:43 -04:00
.gitignore Initial impl. for Xcode 6 - basic tests 2015-06-24 19:32:46 +02:00
ChangeLog Simplification: added Task.get_cwd() 2016-01-11 05:25:46 +01:00
configure Update use_config - Issue 1608 2015-08-29 10:31:02 +02: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 docs 2016-01-27 23:54:35 +01:00
waf-light Version number for waf 1.9 2016-01-11 03:20:07 +01:00
wscript Do not include waflib.zip in 'waf dist' results 2016-01-24 23:51:58 +01:00

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.