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