mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
19 lines
424 B
CMake
19 lines
424 B
CMake
#
|
|
# Copyright (C) 2019-2021 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
target_sources(${TARGET_NAME} PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/preemption_tests.cpp
|
|
)
|
|
|
|
if(TESTS_XEHP_AND_LATER)
|
|
target_sources(${TARGET_NAME} PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_preemption_xehp_and_later.cpp
|
|
)
|
|
endif()
|
|
|
|
add_subdirectories()
|