2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2025-01-08 09:25:08 +01:00
Go to file
2014-01-01 16:07:19 +01:00
build_system_kit
demos wrong exception name in demos/subst/wscript 2014-01-01 16:07:19 +01:00
docs Issue 1362, docs 2013-10-15 01:08:38 +02:00
playground more docs 2013-05-25 15:31:30 +02:00
tests handle empty defines when pasting tokens 2013-11-15 23:25:27 +01:00
utils
waflib Issue 1390 - conf.check(lib='several libs') 2013-12-21 17:28:50 +01:00
.gitignore
ChangeLog waf-1.7.14 2013-12-18 23:28:58 +01:00
configure
DEVEL
README use os.remove instead of os.unlink for consistency 2013-05-18 19:51:45 +02:00
TODO
waf-light waf-1.7.14 2013-12-18 23:28:58 +01:00
wscript waf-1.7.14 2013-12-18 23:28:58 +01:00

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

Waf (1.7)

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, 3.1 or 3.2 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 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")'

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, 2013 (ita)