mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

- split the allocation code from command list or kernel - allow to call allocation code in all parts of the driver Related-To: NEO-13350 Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
29 lines
1.1 KiB
CMake
29 lines
1.1 KiB
CMake
#
|
|
# Copyright (C) 2019-2024 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(NEO_CORE_PROGRAM
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/heap_info.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kernel_info.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kernel_info.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kernel_info_from_patchtokens.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kernel_info_from_patchtokens.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/print_formatter.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/print_formatter.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_info.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_info.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_info_from_patchtokens.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_info_from_patchtokens.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_initialization.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_initialization.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/sync_buffer_handler.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/sync_buffer_handler.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/work_size_info.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/work_size_info.h
|
|
)
|
|
|
|
set_property(GLOBAL PROPERTY NEO_CORE_PROGRAM ${NEO_CORE_PROGRAM})
|