he installed file "pentelemetry-cpp-target.cmake" has no "find_package(prometheus-cpp REQUIRED)" if dev-cpp/openetelemetry-cpp is built w/ USE="prometheus", so package depend on it will fail to build: > CMake Error at /usr/lib64/cmake/opentelemetry-cpp/opentelemetry-cpp-target.cmake:156 (set_target_properties): > The link interface of target "opentelemetry-cpp::prometheus_exporter" > contains: > > prometheus-cpp::pull > but the target was not found build success after add following line in /usr/lib64/cmake/opentelemetry-cpp/opentelemetry-cpp-target.cmake, before "add_library(opentelemetry-cpp::prometheus_exporter SHARED IMPORTED)" > find_package(prometheus-cpp REQUIRED) Reproducible: Always