# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0

cmake_minimum_required(VERSION 3.16)
project(opentelemetry-cpp-exporters-zipkin-install-test LANGUAGES CXX)

find_package(opentelemetry-cpp REQUIRED COMPONENTS exporters_zipkin)

if(NOT TARGET nlohmann_json::nlohmann_json)
  message(FATAL_ERROR "nlohmann_json::nlohmann_json target not found")
endif()

find_package(GTest CONFIG REQUIRED)
include(GoogleTest)

add_executable(exporters_zipkin_test
               ${INSTALL_TEST_SRC_DIR}/test_exporters_zipkin.cc)
target_link_libraries(
  exporters_zipkin_test PRIVATE opentelemetry-cpp::zipkin_trace_exporter
                                GTest::gtest GTest::gtest_main)

gtest_discover_tests(exporters_zipkin_test)
