mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
- pass hwInfo and localMemoryEnabled to AubCenter ctor - initialize AubCenter in Platform:intialize() when Device is created - only when CSR is not CsrHw - move aub_center files to runtime/aub directory Change-Id: Iceb4bf1cb2bb55b42d438502cca667a449f11411
17 lines
520 B
CMake
17 lines
520 B
CMake
#
|
|
# Copyright (C) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(RUNTIME_SRCS_AUB
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/aub_center.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/aub_center.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}${BRANCH_DIR_SUFFIX}/aub_helper.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/aub_helper.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/aub_helper.inl
|
|
)
|
|
target_sources(${NEO_STATIC_LIB_NAME} PRIVATE ${RUNTIME_SRCS_AUB})
|
|
set_property(GLOBAL PROPERTY RUNTIME_SRCS_AUB ${RUNTIME_SRCS_AUB})
|