Skip to content

Commit

Permalink
Rename option to OPENTELEMETRY_SKIP_DYNAMIC_LOADING_TESTS
Browse files Browse the repository at this point in the history
  • Loading branch information
tobim committed Oct 16, 2024
1 parent 7d4291f commit d85238c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ option(WITH_ASYNC_EXPORT_PREVIEW "Whether to enable async export" OFF)
option(WITH_METRICS_EXEMPLAR_PREVIEW
"Whether to enable exemplar within metrics" OFF)

option(OPENTELEMETRY_STATIC_ONLY
option(OPENTELEMETRY_SKIP_DYNAMIC_LOADING_TESTS
"Whether to build test libraries that are always linked as shared libs"
OFF)

Expand Down
2 changes: 1 addition & 1 deletion api/test/singleton/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0

if(OPENTELEMETRY_STATIC_ONLY)
if(OPENTELEMETRY_SKIP_DYNAMIC_LOADING_TESTS)
return()
endif()

Expand Down
2 changes: 1 addition & 1 deletion examples/plugin/plugin/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0

if(OPENTELEMETRY_STATIC_ONLY)
if(OPENTELEMETRY_SKIP_DYNAMIC_LOADING_TESTS)
return()
endif()

Expand Down

0 comments on commit d85238c

Please sign in to comment.