Skip to content

Commit

Permalink
[BUILD] Add bazel missing BUILD file (#2720)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdat00 authored Jun 27, 2024
1 parent fd57e7a commit 7701239
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions examples/etw_threads/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0

cc_binary(
name = "example_etw_threads",
srcs = [
"main.cc",
],
tags = [
"etw",
"examples",
],
target_compatible_with = ["@platforms//os:windows"],
deps = [
"//api",
"//exporters/etw:etw_exporter",
],
)

0 comments on commit 7701239

Please sign in to comment.