aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/backend/vs2017backend.py
AgeCommit message (Collapse)AuthorFilesLines
2020-01-28backend: refactor: set self.interpreter in the constructorDaniel Mensinger1-2/+5
2019-08-24Vs backend compiler selection (#5448)Dylan Baker1-1/+16
* backends/vs: Only set platform_toolset if it isn't already set * interpreter: set backend up after the compiler Otherwise we won't be able to check which VS toolchain to use. * docs/using-visual-studio: wrap lines * docs: recommend the py launcher instead of python3 for windows * set backend.environment when building a dummy version * backends/vs: Add support for clang-cl with vs2017 and vs2019 backends * backends/vs: Add support for ICL (19.x) with vs2015 and vs2017 backends
2017-11-30VS: Add /DEBUG to linker to generate debug informationNiklas Claesson1-0/+5
2017-06-09vs: Sometimes WindowsSDKVersion is unsetNirbheek Chauhan1-1/+3
https://ci.appveyor.com/project/jpakkane/meson/build/2871/job/ti4qpoptd5tk19sn
2017-03-30strip trailing backslash from WindowsSDKVersion (#1538)melak471-1/+1
2017-03-22add vs2017 backendNicolas Schneider1-0/+27
VS2017 requires the 'WindowsTargetPlatformVersion' property to be set. We gather the version to use from the environment variable 'WindowsSDKVersion' that will be set by the VS developer command prompt.