mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
- added dual handle support for RAS Correctable and Uncorrectable Errors. - added reset counter for RAS. - added Os Specific ULT for RAS Change-Id: Ia10115bf6720ab211f549571e810ec0d6c0801ec
26 lines
593 B
CMake
26 lines
593 B
CMake
#
|
|
# Copyright (C) 2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(L0_SRCS_TOOLS_SYSMAN_RAS
|
|
${CMAKE_CURRENT_SOURCE_DIR}/ras.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/ras.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/ras_imp.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/ras_imp.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/os_ras.h
|
|
)
|
|
|
|
|
|
target_sources(${L0_STATIC_LIB_NAME}
|
|
PRIVATE
|
|
${L0_SRCS_TOOLS_SYSMAN_RAS}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
)
|
|
|
|
add_subdirectories()
|
|
|
|
# Make our source files visible to parent
|
|
set_property(GLOBAL PROPERTY L0_SRCS_TOOLS_SYSMAN_RAS ${L0_SRCS_TOOLS_SYSMAN_RAS})
|