summaryrefslogtreecommitdiffstats
path: root/llvm/tools/msbuild/Microsoft.Cpp.Win32.llvm.props.in
Commit message (Collapse)AuthorAgeFilesLines
* Rewrite the VS integration scripts.Zachary Turner2018-07-201-18/+0
| | | | | | | | | | | | | | | | | | | | | | | This is a new modernized VS integration installer. It adds a Visual Studio .sln file which, when built, outputs a VSIX that can be used to install ourselves as a "real" Visual Studio Extension. We can even upload this extension to the visual studio marketplace. This fixes a longstanding problem where we didn't support installing into VS 2017 and higher. In addition to supporting VS 2017, due to the way this is written we now longer need to do anything special to support future versions of VS as well. Everything should "just work". This also fixes several bugs with our old integration, such as MSBuild triggering full rebuilds when /Zi was used. Finally, we add a new UI page called "LLVM" which becomes visible when the LLVM toolchain is selected. For now this only contains one option which is the path to clang-cl.exe, but in the future we can add more things here. Differential Revision: https://reviews.llvm.org/D42762 llvm-svn: 337572
* MSBuild integration: get the LibraryPath right (PR18707)Hans Wennborg2014-02-131-1/+1
| | | | | | | It was pointing to lib\clang\3.4, but now we're on 3.5. Make CMake insert the right version automatically. llvm-svn: 201363
* VS Integration: install toolsets for x64 too (PR18738)Hans Wennborg2014-02-121-1/+1
| | | | | | | | | This does exactly the same thing as for Win32, except it passes -m64 to the compiler and the files go in a different directory. Differential Revision: http://llvm-reviews.chandlerc.com/D2749 llvm-svn: 201269
* Provide msbuild integration for vs2013.Hans Wennborg2013-10-101-1/+2
| | | | | | Patch by Josh Samuel! llvm-svn: 192371
* msbuild: Set _MSC_VER to match the CRT we're usingReid Kleckner2013-09-191-0/+7
| | | | | | | | | Various Windows SDK headers use _MSC_VER values to figure out what version of the VC++ headers they're using, in particular for SAL macros. Patch by Paul Hampson! llvm-svn: 191015
* msbuild integration: provide separate files for VS2010 and VS2012Hans Wennborg2013-09-061-1/+1
| | | | | | | | | The previous msbuild integration only worked if VS2010 was installed. This patch renames the current integration to LLVM-vs2010 and adds LLVM-vs2012. Differential Revision: http://llvm-reviews.chandlerc.com/D1614 llvm-svn: 190173
* msbuild: Add clang's compiler-rt libs to the LibraryPathReid Kleckner2013-09-051-0/+1
| | | | | | This allows linking libraries like the asan RTL. llvm-svn: 190028
* Substitute LLVM's version into the msbuild property file at config timeReid Kleckner2013-08-291-0/+9
Requires shuffling the CPack code up before add_subdirectory(tools), but that's where the version settings are anyway. llvm-svn: 189615
OpenPOWER on IntegriCloud