Go to file
Thomas Nagy f9754ac7d5 another experimental module for stopping as early as possible when errors occur with -k 2011-11-05 23:57:17 +01:00
build_system_kit Initial commit 2011-09-10 11:13:51 +02:00
demos using -verbose to track which .class were created was a good idea, but it does not work in practice 2011-10-30 20:40:57 +01:00
docs docs 2011-10-02 09:40:48 +02:00
playground docs 2011-10-23 08:41:30 +02:00
tests Initial commit 2011-09-10 11:13:51 +02:00
utils Initial commit 2011-09-10 11:13:51 +02:00
waflib another experimental module for stopping as early as possible when errors occur with -k 2011-11-05 23:57:17 +01:00
.gitignore Add .gitignore file 2011-10-26 18:46:12 +02:00
ChangeLog docs 2011-10-26 21:58:36 +02:00
DEVEL Remove the remaining references to svn. 2011-09-10 21:25:03 +02:00
README Remove the remaining references to svn. 2011-09-10 21:25:03 +02:00
TODO another experimental module for stopping as early as possible when errors occur with -k 2011-11-05 23:57:17 +01:00
configure Initial commit 2011-09-10 11:13:51 +02:00
waf-light Initial commit 2011-09-10 11:13:51 +02:00
wscript #1039 2011-10-01 09:20:36 +02:00

README

WHAT YOU WILL FIND HERE
-----------------------

Waf (1.6)

For the manual: http://docs.waf.googlecode.com/git/book_16/single.html
For the api docs: http://docs.waf.googlecode.com/git/apidocs_16/index.html
For the examples: see the folder demos/

HOW TO CREATE THE WAF SCRIPT
----------------------------

Python 2.6, 2.7, 3.0 or 3.1 is required to generate the waf script. Execute:
$ ./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

To add a tool that does not exist in the folder compat15, pass an absolute path
To customize the initialization, pass the parameter 'prelude'
$ ./waf-light --make-waf --tools=compat15,/comp/waf/aba.py --prelude=$'\tfrom waflib.extras import aba\n\taba.foo()'

HOW TO TRY THE EXAMPLES
-----------------------

Try this:
$ cp waf demos/c/
$ cd demos/c/
$ ./waf configure build

USING GIT
---------

$ git clone https://code.google.com/p/waf/
set $HOME/.netrc to read:
machine code.google.com login user@gmail.com password pass
$ git remote add code https://code.google.com/p/waf.docs/
... make a few changes
$ git push code

---------------------------
Thomas Nagy, 2011 (ita)