# Copyright (c) Huawei Technologies Co., Ltd. 2024. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================

cmake_minimum_required(VERSION 3.12)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_SKIP_RPATH TRUE)

if(NOT SECUREC_PATH)
    set(SECUREC_PATH ${PROJECT_SOURCE_DIR}/../platform/securec)
endif()
message("SECUREC_PATH: " ${SECUREC_PATH})

link_libraries(stdc++fs)

file(GLOB_RECURSE COMMON_SRC ./*.cpp ./*.h)
add_library(COMMON_ASC SHARED ${COMMON_SRC})

IF (CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "aarch64")
    SET(ARCH aarch64)
ELSEIF (CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "x86_64")
    SET(ARCH x86_64)
ENDIF ()

target_include_directories(COMMON_ASC
    PUBLIC
        ${SECUREC_PATH}/include
        ${ASCEND_PATH}/${ARCH}-linux/pkg_inc/
        ${ASCEND_PATH}/${ARCH}-linux/pkg_inc/runtime/
        ${ASCEND_PATH}/${ARCH}-linux/pkg_inc/profiling/
        ${ASCEND_PATH}/${ARCH}-linux/include/
        ${ASCEND_PATH}/${ARCH}-linux/include/hccl/
        ${ASCEND_PATH}/${ARCH}-linux/include/experiment/runtime/
        ${ASCEND_PATH}/${ARCH}-linux/include/experiment/msprof/
        ${ASCEND_DRIVER_PATH}/include
        ${ASCEND_DRIVER_PATH}/kernel/inc
        ${CMAKE_CURRENT_SOURCE_DIR}/lccl/src/3rdparty/
        ${CMAKE_CURRENT_SOURCE_DIR}/lccl/include
        ${CMAKE_CURRENT_SOURCE_DIR}/lccl/include/src/3rdparty
)

target_link_directories(COMMON_ASC
    PUBLIC
        ${ASCEND_PATH}/fwkacllib/lib64
        ${ASCEND_PATH}/compiler/lib64
        ${ASCEND_PATH}/runtime/lib64
        ${SECUREC_PATH}/lib
        ${ASCEND_DRIVER_PATH}/lib64/driver
        ${ASCEND_PATH}/${ARCH}-linux/lib64/
)

target_link_libraries(COMMON_ASC PUBLIC ascendcl ge_executor gert runtime ge_common register graph ascend_protobuf
     error_manager exe_graph acl_tdt_channel acl_tdt_queue securec drvdsmi_host profapi c_sec)
target_link_libraries(COMMON_ASC PUBLIC
        ${PYTHON_LIBRARY}
)

set(AIV_ARCH dav-c220-vec)
set(AIC_ARCH dav-c220-cube)

install(TARGETS COMMON_ASC LIBRARY DESTINATION ${CMAKE_INSTALL_PREFIX})