build-clang.cmd 217 B

12345678910
  1. REM Copyright The OpenTelemetry Authors
  2. REM SPDX-License-Identifier: Apache-2.0
  3. @echo off
  4. pushd %~dp0
  5. set "PATH=%ProgramFiles%\LLVM\bin;%PATH%"
  6. set BUILDTOOLS_VERSION=clang
  7. set CMAKE_GEN=Ninja
  8. call build.cmd %*
  9. popd