mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
32 lines
1.3 KiB
CMake
32 lines
1.3 KiB
CMake
#
|
|
# Copyright (C) 2019-2021 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
if(TESTS_GEN11)
|
|
set(IGDRCL_SRCS_tests_gen11
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/coherency_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/command_stream_receiver_hw_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/enqueue_kernel_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/enqueue_media_kernel_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/hw_helper_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/image_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kernel_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/sampler_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/scheduler_source_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tbx_command_stream_receiver_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_device_caps_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_device_queue_hw_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_platform_caps_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_sample_gen11.cpp
|
|
)
|
|
|
|
get_property(NEO_CORE_TESTS_GEN11 GLOBAL PROPERTY NEO_CORE_TESTS_GEN11)
|
|
list(APPEND IGDRCL_SRCS_tests_gen11 ${NEO_CORE_TESTS_GEN11})
|
|
|
|
target_sources(igdrcl_tests PRIVATE ${IGDRCL_SRCS_tests_gen11})
|
|
add_subdirectories()
|
|
endif()
|