summaryrefslogtreecommitdiff
path: root/tools/msbuild/install.bat
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2013-09-19 16:50:40 +0000
committerReid Kleckner <reid@kleckner.net>2013-09-19 16:50:40 +0000
commita22ff961db47ffff4f1e795d810aa102edb9b79b (patch)
tree670b68ea016b7b5cf96a20d4dbd1b3228e2a23e9 /tools/msbuild/install.bat
parent6591308b7e041bb8e5e211f84bcc4a97d3764cc5 (diff)
downloadllvm-a22ff961db47ffff4f1e795d810aa102edb9b79b.tar.gz
llvm-a22ff961db47ffff4f1e795d810aa102edb9b79b.tar.bz2
llvm-a22ff961db47ffff4f1e795d810aa102edb9b79b.tar.xz
Include an LLVM-vs2012_xp toolset in the MSBuild integration
Patch by Paul Hampson! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191010 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/msbuild/install.bat')
-rw-r--r--tools/msbuild/install.bat6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/msbuild/install.bat b/tools/msbuild/install.bat
index 2d5af629af..2b66a6c01a 100644
--- a/tools/msbuild/install.bat
+++ b/tools/msbuild/install.bat
@@ -39,6 +39,12 @@ copy Microsoft.Cpp.Win32.LLVM-vs2012.props %D%\LLVM-vs2012
IF NOT %ERRORLEVEL% == 0 GOTO FAILED
copy Microsoft.Cpp.Win32.LLVM-vs2012.targets %D%\LLVM-vs2012
IF NOT %ERRORLEVEL% == 0 GOTO FAILED
+IF NOT EXIST %D%\LLVM-vs2012_xp mkdir %D%\LLVM-vs2012_xp
+IF NOT %ERRORLEVEL% == 0 GOTO FAILED
+copy Microsoft.Cpp.Win32.LLVM-vs2012_xp.props %D%\LLVM-vs2012_xp
+IF NOT %ERRORLEVEL% == 0 GOTO FAILED
+copy Microsoft.Cpp.Win32.LLVM-vs2012_xp.targets %D%\LLVM-vs2012_xp
+IF NOT %ERRORLEVEL% == 0 GOTO FAILED
echo Done!
goto END