File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed
Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -10,4 +10,7 @@ add_subdirectory(metrics)
1010add_subdirectory (logs)
1111add_subdirectory (common)
1212add_subdirectory (baggage)
13- add_subdirectory (singleton)
13+
14+ if (NOT OPENTELEMETRY_SKIP_DYNAMIC_LOADING_TESTS)
15+ add_subdirectory (singleton)
16+ endif ()
Original file line number Diff line number Diff line change 11# Copyright The OpenTelemetry Authors
22# SPDX-License-Identifier: Apache-2.0
33
4- if (OPENTELEMETRY_SKIP_DYNAMIC_LOADING_TESTS)
5- return ()
6- endif ()
7-
84include (GoogleTest)
95
106# Header only singletons are not available in windows yet.
Original file line number Diff line number Diff line change 22# SPDX-License-Identifier: Apache-2.0
33
44add_subdirectory (load)
5- add_subdirectory (plugin)
5+
6+ if (NOT OPENTELEMETRY_SKIP_DYNAMIC_LOADING_TESTS)
7+ add_subdirectory (plugin)
8+ endif ()
Original file line number Diff line number Diff line change 11# Copyright The OpenTelemetry Authors
22# SPDX-License-Identifier: Apache-2.0
33
4- if (OPENTELEMETRY_SKIP_DYNAMIC_LOADING_TESTS)
5- return ()
6- endif ()
7-
84add_library (example_plugin SHARED tracer.cc factory_impl.cc)
95target_link_libraries (example_plugin opentelemetry_api)
You can’t perform that action at this time.
0 commit comments