diff options
author | Hans Wennborg <hans@hanshq.net> | 2013-08-28 01:19:26 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2013-08-28 01:19:26 +0000 |
commit | d2cbe22b4a324e8aef8568a10829f07ebc744676 (patch) | |
tree | c34aac8e69a42a3e04f69ff69ba89aba24e6e5e7 /llvm/tools/msbuild | |
parent | aae63a0ce6099396dcc18348672e8aaeb25d1d93 (diff) | |
download | bcm5719-llvm-d2cbe22b4a324e8aef8568a10829f07ebc744676.tar.gz bcm5719-llvm-d2cbe22b4a324e8aef8568a10829f07ebc744676.zip |
cmake: Add msbuild integration to the install
This adds the msbuild integration files to the install, provides batch scripts
for (un)installing it in a convenient way, and hooks up the nsis installer to
run those scripts.
Differential Revision: http://llvm-reviews.chandlerc.com/D1537
llvm-svn: 189434
Diffstat (limited to 'llvm/tools/msbuild')
-rw-r--r-- | llvm/tools/msbuild/CMakeLists.txt | 10 | ||||
-rw-r--r-- | llvm/tools/msbuild/install.bat | 34 | ||||
-rw-r--r-- | llvm/tools/msbuild/uninstall.bat | 34 |
3 files changed, 78 insertions, 0 deletions
diff --git a/llvm/tools/msbuild/CMakeLists.txt b/llvm/tools/msbuild/CMakeLists.txt new file mode 100644 index 00000000000..a1dca8aca8d --- /dev/null +++ b/llvm/tools/msbuild/CMakeLists.txt @@ -0,0 +1,10 @@ +if (WIN32) + install(DIRECTORY . + DESTINATION tools/msbuild + FILES_MATCHING + PATTERN "*.targets" + PATTERN "*.props" + PATTERN "*.bat" + PATTERN ".svn" EXCLUDE + ) +endif() diff --git a/llvm/tools/msbuild/install.bat b/llvm/tools/msbuild/install.bat new file mode 100644 index 00000000000..db11c863538 --- /dev/null +++ b/llvm/tools/msbuild/install.bat @@ -0,0 +1,34 @@ +@echo off
+
+echo Installing MSVC integration...
+
+REM Change to the directory of this batch file.
+cd /d %~dp0
+
+REM Search for the MSBuild toolsets directory.
+SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\PlatformToolsets"
+IF EXIST %D% GOTO FOUND_MSBUILD
+SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\PlatformToolsets"
+IF EXIST %D% GOTO FOUND_MSBUILD
+
+echo Failed to find MSBuild toolsets directory.
+goto FAILED
+
+:FOUND_MSBUILD
+IF NOT EXIST %D%\llvm mkdir %D%\llvm
+IF NOT %ERRORLEVEL% == 0 GOTO FAILED
+
+copy Microsoft.Cpp.Win32.llvm.props %D%\llvm
+IF NOT %ERRORLEVEL% == 0 GOTO FAILED
+copy Microsoft.Cpp.Win32.llvm.targets %D%\llvm
+IF NOT %ERRORLEVEL% == 0 GOTO FAILED
+
+echo Done!
+goto END
+
+:FAILED
+echo MSVC integration install failed.
+pause
+goto END
+
+:END
diff --git a/llvm/tools/msbuild/uninstall.bat b/llvm/tools/msbuild/uninstall.bat new file mode 100644 index 00000000000..8bc304e0b82 --- /dev/null +++ b/llvm/tools/msbuild/uninstall.bat @@ -0,0 +1,34 @@ +@echo off
+
+echo Uninstalling MSVC integration...
+
+REM CD to the directory of this batch file.
+cd /d %~dp0
+
+REM Search for the MSBuild toolsets directory.
+SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\PlatformToolsets"
+IF EXIST %D% GOTO FOUND_MSBUILD
+SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\Platforms\Win32\PlatformToolsets"
+IF EXIST %D% GOTO FOUND_MSBUILD
+
+echo Failed to find MSBuild toolsets directory.
+goto FAILED
+
+:FOUND_MSBUILD
+
+del %D%\llvm\Microsoft.Cpp.Win32.llvm.props
+IF NOT %ERRORLEVEL% == 0 GOTO FAILED
+del %D%\llvm\Microsoft.Cpp.Win32.llvm.targets
+IF NOT %ERRORLEVEL% == 0 GOTO FAILED
+rmdir %D%\llvm
+IF NOT %ERRORLEVEL% == 0 GOTO FAILED
+
+echo Done!
+goto END
+
+:FAILED
+echo MSVC integration uninstall failed.
+pause
+goto END
+
+:END
|