mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
In order to support latest spec, where sysman's initialization could happen independent of core's initialization, add a new sysman directory inside level_zero. Related-To: LOCI-3887 Signed-off-by: Jitendra Sharma <jitendra.sharma@intel.com>
19 lines
379 B
CMake
19 lines
379 B
CMake
#
|
|
# Copyright (C) 2023 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(L0_SRCS_SYSMAN
|
|
)
|
|
|
|
target_sources(${L0_STATIC_LIB_NAME}
|
|
PRIVATE
|
|
${L0_SRCS_SYSMAN}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
)
|
|
|
|
add_subdirectories()
|
|
|
|
# Make our source files visible to parent
|
|
set_property(GLOBAL PROPERTY L0_SRCS_SYSMAN ${L0_SRCS_SYSMAN}) |