# ============================================================================ #
# 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-quera-qpu)
message(STATUS "Building QuEra REST QPU.")

add_library(${LIBRARY_NAME} SHARED QuEraExecutor.cpp QuEraRemoteRESTQPU.cpp QuEraServerHelper.cpp)

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

target_link_libraries(${LIBRARY_NAME}
  PUBLIC
    cudaq-serverhelper-braket 
    cudaq-operator
    cudaq-common 
  PRIVATE
    cudaq-mlir-runtime
    cudaq-logger
    cudaq
    cudaq-platform-default
    nvqir
)

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

add_target_config(quera)

add_library(cudaq-serverhelper-quera SHARED QuEraExecutor.cpp QuEraServerHelper.cpp)
target_link_libraries(cudaq-serverhelper-quera
  PUBLIC 
    cudaq-serverhelper-braket
    cudaq-common 
    cudaq-logger 
)
install(TARGETS cudaq-serverhelper-quera DESTINATION lib
        COMPONENT Runtime)
