mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 09:14:47 +08:00
xe_drm.h header is taken from commit 9cb016ebbb6a275f57b1cb512b95d5a842391ad7 https://cgit.freedesktop.org/drm/drm-xe/tree/include/uapi/drm/xe_drm.h Related-To: NEO-7578 Co-authored-by: Philippe Lecluse <philippe.lecluse@intel.com> Co-authored-by: Francois Dugast <francois.dugast@intel.com> Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
17 lines
468 B
CMake
17 lines
468 B
CMake
#
|
|
# Copyright (C) 2023 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
if(NEO_ENABLE_XE_DRM_DETECTION)
|
|
set(NEO_CORE_OS_INTERFACE_LINUX_XE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/drm_version_xe.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/ioctl_helper_xe.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/ioctl_helper_xe.h
|
|
)
|
|
|
|
set_property(GLOBAL APPEND PROPERTY NEO_CORE_OS_INTERFACE_LINUX ${NEO_CORE_OS_INTERFACE_LINUX_XE})
|
|
endif()
|