summaryrefslogtreecommitdiff
path: root/Jamrules.jam
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-06-07 16:07:03 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-06-07 16:07:03 +0000
commit47c17a25d934450a28fdceecaecf1100943381a9 (patch)
tree22387c9c184da45703beb25f23131a446bc77bfd /Jamrules.jam
parent45a0392656faaac09a8c7e322ead46a84bb1f1a8 (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.jam5
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 ;