| 1234567891011121314151617181920 | REM Copyright The OpenTelemetry AuthorsREM SPDX-License-Identifier: Apache-2.0REM Build with Visual Studio 2017set "BUILDTOOLS_VERSION=vs2017"set ARCH=x64if NOT "%1"=="" (  set ARCH=%1)REM ### Uncomment below to use Visual Studio MSBuild solution.REM ### Ninja generator produces much faster builds. But it isREM ### easier to debug MSBuild solution in vs2017 IDE :REMREM set "CMAKE_GEN=Visual Studio 15 2017"REMcd %~dp0call setup-buildtools.cmdcall build.cmd
 |