# -----------------------------------------------------------------------------------------------------------
# Copyright (c) 2025 Huawei Technologies Co., Ltd.
# This program is free software, you can redistribute it and/or modify it under the terms and conditions of
# CANN Open Software License Agreement Version 2.0 (the "License").
# Please refer to the License for details. You may not use this file except in compliance with the License.
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
# INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
# See LICENSE in the root of the software repository for the full text of the License.
# -----------------------------------------------------------------------------------------------------------

add_library(ascendcl_stub SHARED src/ascendcl_stub.cc)
set_target_properties(ascendcl_stub PROPERTIES OUTPUT_NAME acl_rt)
target_compile_options(ascendcl_stub PRIVATE -g)
target_include_directories(ascendcl_stub PRIVATE
    ${CMAKE_CURRENT_LIST_DIR}/src
    ${AIR_CODE_DIR}/inc/graph_metadef
    ${AIR_CODE_DIR}/base/metadef/pkg_inc
    ${AIR_CODE_DIR}/tests/depends/runtime/src)
target_link_libraries(ascendcl_stub
    PRIVATE
        intf_llt_pub
        c_sec
        cce_headers
        msprof_headers
        datagw_headers
        mmpa_headers
        runtime_stub
    PUBLIC
        ascendcl_headers
)

stub_module(ascendcl ascendcl_stub)
stub_module(acl_rt ascendcl_stub)

get_target_property(ACL_RT_IMPORTED acl_rt IMPORTED)
if (ACL_RT_IMPORTED)
    set_target_properties(acl_rt PROPERTIES
        IMPORTED_LOCATION "${CMAKE_CURRENT_BINARY_DIR}/libacl_rt.so")
endif()