summaryrefslogtreecommitdiff
path: root/mesonbuild/backend/vs2017backend.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix '# Visual Studio <>' comment in sln files with VS backendLuke Elliott2021-11-271-1/+3
| | | | such that Visual Studio Version Selector works.
* Move language standard in separate method within vsbackendMoroz Oleg2021-11-021-0/+10
|
* backend: refactor: set self.interpreter in the constructorDaniel Mensinger2020-01-281-2/+5
|
* Vs backend compiler selection (#5448)Dylan Baker2019-08-241-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
* VS: Add /DEBUG to linker to generate debug informationNiklas Claesson2017-11-301-0/+5
|
* vs: Sometimes WindowsSDKVersion is unsetNirbheek Chauhan2017-06-091-1/+3
| | | | https://ci.appveyor.com/project/jpakkane/meson/build/2871/job/ti4qpoptd5tk19sn
* strip trailing backslash from WindowsSDKVersion (#1538)melak472017-03-301-1/+1
|
* add vs2017 backendNicolas Schneider2017-03-221-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.