mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
driver is built with xe drm support by default added cmake flag to control xe eu debug API support NEO_ENABLE_XE_EU_DEBUG_SUPPORT This flag is disabled by default and uapi-eu-debug headers are not needed for driver compilation as these headers are not a part of upstream kernel yet. Related-To: NEO-10780 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
34 lines
897 B
CMake
34 lines
897 B
CMake
#
|
|
# Copyright (C) 2021-2024 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
if(UNIX)
|
|
target_sources(${L0_STATIC_LIB_NAME}
|
|
PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/debug_session.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/drm_helper.cpp
|
|
)
|
|
|
|
if(NEO_ENABLE_i915_PRELIM_DETECTION)
|
|
target_sources(${L0_STATIC_LIB_NAME}
|
|
PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/prelim/debug_session.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/prelim/debug_session.h
|
|
)
|
|
endif()
|
|
|
|
if(NEO_ENABLE_XE_EU_DEBUG_SUPPORT)
|
|
target_sources(${L0_STATIC_LIB_NAME}
|
|
PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xe/debug_session.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/xe/debug_session.h
|
|
)
|
|
endif()
|
|
|
|
add_subdirectories()
|
|
|
|
endif()
|