# ============================================================================ #
# 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.     #
# ============================================================================ #
target_sources(cudaq-rest-qpu PRIVATE QuantinuumServerHelper.cpp)
add_target_config(quantinuum)

add_library(cudaq-serverhelper-quantinuum SHARED QuantinuumServerHelper.cpp )
target_link_libraries(cudaq-serverhelper-quantinuum
  PUBLIC 
    cudaq-common
    cudaq-logger 
    fmt::fmt-header-only 
)
install(TARGETS cudaq-serverhelper-quantinuum DESTINATION lib
        COMPONENT Runtime)

