We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34de484 commit b92f316Copy full SHA for b92f316
cmake/opentelemetry-cpp-config.cmake.in
@@ -82,10 +82,28 @@ if(@WITH_OTLP_GRPC@)
82
find_dependency(gRPC)
83
endif()
84
85
+if("@OpenTracing_FOUND@")
86
+ find_dependency(OpenTracing)
87
+endif()
88
+
89
+if("@prometheus-cpp_FOUND@")
90
+ find_dependency(prometheus-cpp)
91
92
93
if("@Protobuf_FOUND@" OR "@PROTOBUF_FOUND@")
94
find_dependency(Protobuf)
95
96
97
+if (@WITH_HTTP_CLIENT_CURL@ AND NOT @BUILD_SHARED_LIBS@)
98
+ if("@CURL_FOUND@")
99
+ find_dependency(CURL)
100
+ endif()
101
102
+ if("@ZLIB_FOUND@")
103
+ find_dependency(ZLIB)
104
105
106
107
set_and_check(OPENTELEMETRY_CPP_INCLUDE_DIRS "@PACKAGE_INCLUDE_INSTALL_DIR@")
108
set_and_check(OPENTELEMETRY_CPP_LIBRARY_DIRS "@PACKAGE_CMAKE_INSTALL_LIBDIR@")
109
0 commit comments