mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-21 17:35:55 +01:00
docs
This commit is contained in:
parent
1e994e50fb
commit
8134aed186
@ -1,3 +1,12 @@
|
||||
NEW IN WAF 2.0.1
|
||||
----------------
|
||||
* Improve the default preprocessor behaviour for gcc/msvc
|
||||
* Accept task objects in Build.add_to_group for compatibility reasons
|
||||
* Prevent xcode generator from overwriting existing features #2038
|
||||
* Fix self.includes data scope #2035
|
||||
* Fix Node.ant_glob case sensitivity regression #2034
|
||||
* Fix Logs.verbose options regression #2033
|
||||
|
||||
NEW IN WAF 2.0.0
|
||||
----------------
|
||||
* Provide a new priority system to improve scalability on complex builds
|
||||
|
@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
import os, sys, inspect
|
||||
|
||||
VERSION="2.0.0"
|
||||
VERSION="2.0.1"
|
||||
REVISION="x"
|
||||
GIT="x"
|
||||
INSTALL="x"
|
||||
|
@ -11,13 +11,13 @@ from waflib import Utils, Errors, Logs
|
||||
import waflib.Node
|
||||
|
||||
# the following 3 constants are updated on each new release (do not touch)
|
||||
HEXVERSION=0x2000000
|
||||
HEXVERSION=0x2000100
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFVERSION="2.0.0"
|
||||
WAFVERSION="2.0.1"
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFREVISION="0279838cfd86c285935a70360b58c2a6fae7c3b2"
|
||||
WAFREVISION="1e994e50fb769d674456ab83adac06846a4316c2"
|
||||
"""Git revision when the waf version is updated"""
|
||||
|
||||
ABI = 20
|
||||
|
@ -51,8 +51,8 @@ if Utils.is_win32:
|
||||
use_trigraphs = 0
|
||||
"""Apply trigraph rules (False by default)"""
|
||||
|
||||
# obsolete, do not use
|
||||
strict_quotes = 0
|
||||
"""Reserve the "#include <>" quotes for system includes (do not search for those includes). False by default."""
|
||||
|
||||
g_optrans = {
|
||||
'not':'!',
|
||||
|
Loading…
Reference in New Issue
Block a user