From abf3312e1bbe5bfc598f82e09a9abb47548bac69 Mon Sep 17 00:00:00 2001 From: Tom Tan Date: Tue, 19 Jul 2022 08:04:02 -0700 Subject: [PATCH] Link opentelemetry_api to ETW exporter test (#1503) --- exporters/etw/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exporters/etw/CMakeLists.txt b/exporters/etw/CMakeLists.txt index 47791b4abf..fbcec8144f 100644 --- a/exporters/etw/CMakeLists.txt +++ b/exporters/etw/CMakeLists.txt @@ -9,7 +9,7 @@ set_target_properties(opentelemetry_exporter_etw PROPERTIES EXPORT_NAME etw_exporter) target_link_libraries(opentelemetry_exporter_etw - INTERFACE nlohmann_json::nlohmann_json) + INTERFACE opentelemetry_api nlohmann_json::nlohmann_json) if(nlohmann_json_clone) add_dependencies(opentelemetry_exporter_etw nlohmann_json::nlohmann_json) endif()