# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

cmake_minimum_required(VERSION 3.13)

set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

project(eventhub_writer_sample)

add_executable(eventhub_writer_sample
    eventhub_writer_sample.cpp
)
add_dependencies(eventhub_writer_sample Azure::azure-core-amqp)

target_link_libraries(eventhub_writer_sample PRIVATE Azure::azure-core-amqp)
