# ============================================================================ # # Copyright (c) 2022 - 2025 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(INTERFACE_POSITION_INDEPENDENT_CODE ON) message(STATUS "Building REST QPU.") add_library(cudaq-rest-qpu SHARED RemoteRESTQPU.cpp ../../common/QuantumExecutionQueue.cpp) add_subdirectory(helpers) target_include_directories(cudaq-rest-qpu PRIVATE . PUBLIC $ $) if (AWSSDK_ROOT) set(SERVICE_COMPONENTS braket s3-crt sts) find_package(AWSSDK REQUIRED COMPONENTS ${SERVICE_COMPONENTS}) else() set(AWSSDK_LINK_LIBRARIES "") endif() target_link_libraries(cudaq-rest-qpu PUBLIC cudaq-operator cudaq-common PRIVATE cudaq-mlir-runtime MLIRTranslateLib fmt::fmt-header-only cudaq cudaq-platform-default ${AWSSDK_LINK_LIBRARIES}) install(TARGETS cudaq-rest-qpu DESTINATION lib)