# ============================================================================ #
# Copyright (c) 2022 - 2026 NVIDIA Corporation & Affiliates.                   #
# All rights reserved.                                                         #
#                                                                              #
# This source code and the accompanying materials are made available under     #
# the terms of the Apache License 2.0 which accompanies this distribution.     #
# ============================================================================ #

set(LIBRARY_NAME cudaq-orca-qpu)
message(STATUS "Building ORCA REST QPU.")
set(ORCA_SRC
  OrcaExecutor.cpp
  OrcaQPU.cpp
  OrcaRemoteRESTQPU.cpp
  OrcaServerHelper.cpp
)

add_library(${LIBRARY_NAME} SHARED ${ORCA_SRC})

target_include_directories(${LIBRARY_NAME} PRIVATE .
    PUBLIC 
       $<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}/runtime>
       $<INSTALL_INTERFACE:include>)

target_link_libraries(${LIBRARY_NAME}
  PUBLIC 
    cudaq-operator
    cudaq-common 
  PRIVATE
    cudaq-mlir-runtime
    fmt::fmt-header-only
    cudaq
    cudaq-platform-default
    cudaqMLIR)

install(TARGETS ${LIBRARY_NAME} DESTINATION lib
        COMPONENT Runtime)

add_target_config(orca)
