waf/README

44 lines
1.6 KiB
Plaintext
Raw Normal View History

2011-09-10 11:13:51 +02:00
WHAT YOU WILL FIND HERE
-----------------------
2015-04-06 14:46:55 +02:00
Waf 1.8 - Recently moved to https://github.com/waf-project/waf
2011-09-10 11:13:51 +02:00
2015-04-06 14:46:55 +02:00
For the manual: https://waf.io/book/
For the API documentation: https://waf.io/apidocs/
For the examples: see the folder demos/ and the folder playground/
2011-09-10 11:13:51 +02:00
HOW TO CREATE THE WAF SCRIPT
----------------------------
2014-10-04 13:49:28 +02:00
Python 2.6, 2.7, 3.0, 3.1, 3.2, 3.3 or 3.4 is required to generate the waf script. The waf script is then the version that can run on Python 2.5.
2014-09-28 19:27:02 +02:00
Just execute:
2011-09-10 11:13:51 +02:00
$ ./waf-light configure build
Or, if you have several python versions installed:
$ python3 ./waf-light configure build
The Waf tools in waflib/extras are not added to the waf script. To add
some of them, use the --tools switch:
$ ./waf-light --tools=compat15,swig
2012-07-02 18:29:24 +02:00
To add a tool that does not exist in the folder extras, pass an absolute path, and
to customize the initialization, pass the parameter 'prelude'. Here is for example
how to create a waf file using the compat15 module:
$ ./waf-light --tools=compat15 --prelude=$'\tfrom waflib.extras import compat15\n'
Any kind of initialization is possible, though one may prefer the build system kit (folder build_system_kit):
$ ./waf-light --make-waf --tools=compat15,/comp/waf/aba.py --prelude=$'\tfrom waflib.extras import compat15\n\tprint("ok")'
2011-09-10 11:13:51 +02:00
2013-11-09 15:29:22 +01:00
Or if you do not want to regenerate the waf file all the time, set the WAFDIR environment variable to the directory containing "waflib".
2011-09-10 11:13:51 +02:00
HOW TO TRY THE EXAMPLES
-----------------------
Try this:
$ cp waf demos/c/
$ cd demos/c/
$ ./waf configure build
---------------------------
2015-01-01 16:24:54 +01:00
Thomas Nagy, 2014-2015 (ita)
2011-09-10 11:13:51 +02:00