mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 01:46:15 +01:00
docs
This commit is contained in:
parent
8571c15a1b
commit
603af4ce6a
@ -1,6 +1,6 @@
|
||||
NEW IN WAF 1.8.0
|
||||
----------------
|
||||
* Do not propagate external static libraries uselib vars #1320
|
||||
* Prevent external static libraries propagation through uselib vars #1320
|
||||
* Removed the Waf cache from the task level
|
||||
* Fix for systems without threading #1323
|
||||
* LaTeX glossaries #1342
|
||||
|
7
DEVEL
7
DEVEL
@ -1,4 +1,4 @@
|
||||
Main repository for waf 1.7 on http://waf.googlecode.com/git/
|
||||
Main repository for waf 1.8 on http://waf.googlecode.com/git/
|
||||
-------------------------------------------------------------
|
||||
|
||||
waflib the core library
|
||||
@ -29,13 +29,13 @@ Programming details
|
||||
-------------------
|
||||
|
||||
* Do not use x.split("\n") but x.splitlines()
|
||||
* Do not catch all exceptions unless you have a good reason to do so
|
||||
* Do not catch all exceptions unless you have a good reason to do so (no "except:")
|
||||
* File handles are too easy to get wrong, use Node.readf/Node.writef/Utils.readf/Utils.writef
|
||||
|
||||
Wiki documentation on http://wiki.waf.googlecode.com/git/
|
||||
---------------------------------------------------------
|
||||
|
||||
...
|
||||
The wiki documentation is always outdated
|
||||
|
||||
Previous branches
|
||||
-----------------
|
||||
@ -43,4 +43,3 @@ Previous branches
|
||||
old svn repository http://waf.googlecode.com/svn/trunk/ (for waf 1.5, read-only and unused)
|
||||
old branch for waf 1.5 http://waf.googlecode.com/svn/branches/waf-1.5/ (again, read-only and unused)
|
||||
|
||||
|
||||
|
4
README
4
README
@ -1,7 +1,7 @@
|
||||
WHAT YOU WILL FIND HERE
|
||||
-----------------------
|
||||
|
||||
Waf (1.7)
|
||||
Waf (1.8)
|
||||
|
||||
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
|
||||
@ -27,6 +27,8 @@ $ ./waf-light --tools=compat15 --prelude=$'\tfrom waflib.extras import compat15\
|
||||
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")'
|
||||
|
||||
Or if you do not want to regenerate the waf file all the time, set the WAFDIR environment variable to the directory containing "waflib".
|
||||
|
||||
HOW TO TRY THE EXAMPLES
|
||||
-----------------------
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user