mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-18 22:08:53 +08:00
15 lines
344 B
CMake
15 lines
344 B
CMake
#
|
|
# Copyright (C) 2019-2021 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
if(${NEO_TARGET_PROCESSOR} STREQUAL "aarch64")
|
|
list(APPEND NEO_CORE_HELPERS
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/local_id_gen.cpp
|
|
)
|
|
|
|
set_property(GLOBAL PROPERTY NEO_CORE_HELPERS ${NEO_CORE_HELPERS})
|
|
endif()
|