mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

- Make it avaialble also to OpenCL - Use it before parsing affinity mask, so devices are masked also following PCI order. Signed-off-by: Jaime Arteaga <jaime.a.arteaga.molina@intel.com>
15 lines
358 B
CMake
15 lines
358 B
CMake
#
|
|
# Copyright (C) 2021 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(NEO_CORE_EXECUTION_ENVIRONMENT_LINUX
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/execution_environment_linux.cpp
|
|
)
|
|
|
|
if(UNIX)
|
|
set_property(GLOBAL PROPERTY NEO_CORE_EXECUTION_ENVIRONMENT_LINUX ${NEO_CORE_EXECUTION_ENVIRONMENT_LINUX})
|
|
endif()
|