diff options
author | arseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640> | 2012-12-07 06:41:48 +0000 |
---|---|---|
committer | arseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640> | 2012-12-07 06:41:48 +0000 |
commit | 7b61ad637920b082d6c23c4495234ce788ad4ed1 (patch) | |
tree | 295fac572642ff3d4970891fae2d41718d130861 | |
parent | 9b9a414ab63d896560dc501266100695b9704c06 (diff) |
tests: Fix msvc11_arm toolset setup
git-svn-id: http://pugixml.googlecode.com/svn/trunk@940 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r-- | Jamrules.jam | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Jamrules.jam b/Jamrules.jam index 54f3191..e03cfb7 100644 --- a/Jamrules.jam +++ b/Jamrules.jam @@ -297,6 +297,11 @@ else if ( $(toolset:I=^msvc) ) { RESULT += "/I\"%WINKITS_PATH%\\include\\shared\"" ; RESULT += "/I\"%WINKITS_PATH%\\include\\um\"" ; + + if ( $(toolset:I=arm$) ) + { + RESULT += /D_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE ; + } } } |