2
0

build-vs2017.cmd 479 B

1234567891011121314151617181920
  1. REM Copyright The OpenTelemetry Authors
  2. REM SPDX-License-Identifier: Apache-2.0
  3. REM Build with Visual Studio 2017
  4. set "BUILDTOOLS_VERSION=vs2017"
  5. set ARCH=x64
  6. if NOT "%1"=="" (
  7. set ARCH=%1
  8. )
  9. REM ### Uncomment below to use Visual Studio MSBuild solution.
  10. REM ### Ninja generator produces much faster builds. But it is
  11. REM ### easier to debug MSBuild solution in vs2017 IDE :
  12. REM
  13. REM set "CMAKE_GEN=Visual Studio 15 2017"
  14. REM
  15. cd %~dp0
  16. call setup-buildtools.cmd
  17. call build.cmd