diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-07 16:07:03 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-07 16:07:03 +0000 |
commit | 47c17a25d934450a28fdceecaecf1100943381a9 (patch) | |
tree | 22387c9c184da45703beb25f23131a446bc77bfd /Jamrules.jam | |
parent | 45a0392656faaac09a8c7e322ead46a84bb1f1a8 (diff) |
tests: Added C++0x support
git-svn-id: http://pugixml.googlecode.com/svn/trunk@505 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'Jamrules.jam')
-rw-r--r-- | Jamrules.jam | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Jamrules.jam b/Jamrules.jam index ab99e13..5357e7e 100644 --- a/Jamrules.jam +++ b/Jamrules.jam @@ -22,6 +22,11 @@ if ( $(toolset:I=^mingw) || $(toolset:I=^gcc) ) RESULT += -W -Wall -Wextra -Werror -pedantic ; + if ( $(toolset:I=_0x) ) + { + RESULT += -std=c++0x ; + } + if ( $(fulldebug) ) { RESULT += -g ; |