# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

cmake_minimum_required(VERSION 3.20)
project(holoscan_benchmark_deadline_priority CXX)

# Finds the package holoscan
find_package(holoscan REQUIRED CONFIG
             PATHS "/opt/nvidia/holoscan" "/workspace/holoscan-sdk/install")

add_executable(benchmark_deadline_priority
  benchmark_deadline_priority.cpp
)

target_link_libraries(benchmark_deadline_priority
  PRIVATE
  holoscan::core
)
