Functions/Get-VSBuildTools2019VCVarsAllPath.ps1
# Copyright (c) 2019, the WebKit for Windows project authors. Please see the # AUTHORS file for details. All rights reserved. Use of this source code is # governed by a BSD-style license that can be found in the LICENSE file. <# .Synopsis Retrieves the location for `vcvarsall.bat` within Visual Studio Build Tools 2019. .Description Retrieves the location of a Visual Studio Build Tools 2019 install and appends the path to `vcvarsall.bat`. The path should be tested before attempting to call the executable. No error checking is performed. #> Function Get-VSBuildTools2019VCVarsAllPath { return (Join-Path (Get-VSBuildTools2019InstallationPath) 'VC\Auxiliary\Build\vcvarsall.bat'); } |