Revert "build: enable xe drm detection by default"

This reverts commit 973757a58d.

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2024-03-18 07:59:53 +00:00
committed by Compute-Runtime-Automation
parent a022acbdf3
commit 19dcc80e44
16 changed files with 112 additions and 41 deletions

View File

@@ -10,8 +10,6 @@ if(UNIX)
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
${CMAKE_CURRENT_SOURCE_DIR}/debug_session.cpp
${CMAKE_CURRENT_SOURCE_DIR}/drm_helper.cpp
${CMAKE_CURRENT_SOURCE_DIR}/xe/debug_session.cpp
${CMAKE_CURRENT_SOURCE_DIR}/xe/debug_session.h
)
if(NEO_ENABLE_i915_PRELIM_DETECTION)
@@ -21,5 +19,15 @@ if(UNIX)
${CMAKE_CURRENT_SOURCE_DIR}/prelim/debug_session.h
)
endif()
endif()
if(NEO_ENABLE_XE_DRM_DETECTION)
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()