mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Related-To: NEO-8188, NEO-10774 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
21 lines
546 B
CMake
21 lines
546 B
CMake
#
|
|
# Copyright (C) 2019-2024 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
target_sources(neo_shared_tests PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/preemption_tests.cpp
|
|
)
|
|
|
|
if(TESTS_XEHP_AND_LATER)
|
|
target_sources(neo_shared_tests PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/test_preemption_xehp_and_later.cpp)
|
|
endif()
|
|
|
|
if(TESTS_XE2_AND_LATER)
|
|
target_sources(neo_shared_tests PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/test_preemption_xe2_and_later.cpp)
|
|
endif()
|
|
|
|
add_subdirectories()
|