You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
672 B
33 lines
672 B
# Copyright The OpenTelemetry Authors |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
add_subdirectory(common) |
|
|
|
if(WITH_OTLP_GRPC |
|
OR WITH_OTLP_HTTP |
|
OR WITH_OTLP_FILE) |
|
add_subdirectory(otlp) |
|
endif() |
|
if(WITH_OTLP_GRPC) |
|
add_subdirectory(grpc) |
|
endif() |
|
if(WITH_ETW) |
|
add_subdirectory(etw_threads) |
|
endif() |
|
if(WITH_ZIPKIN) |
|
add_subdirectory(zipkin) |
|
endif() |
|
if(WITH_PROMETHEUS) |
|
add_subdirectory(prometheus) |
|
endif() |
|
add_subdirectory(logs_simple) |
|
add_subdirectory(plugin) |
|
add_subdirectory(simple) |
|
add_subdirectory(batch) |
|
add_subdirectory(metrics_simple) |
|
add_subdirectory(multithreaded) |
|
add_subdirectory(multi_processor) |
|
|
|
if(WITH_EXAMPLES_HTTP) |
|
add_subdirectory(http) |
|
endif()
|
|
|