mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-11 16:45:25 +08:00
opencl/test/unit_test/gen9/hw_helper_tests_gen9.cpp -> unit_test/gen9 opencl/test/unit_test/gen11/hw_helper_tests_gen11.cpp -> unit_test/gen11 unit_test/device_binary_format/elf/elf_tests_data.h -> common/device_binary/elf Related-To: NEO-6524 Signed-off-by: Warchulski, Jaroslaw <jaroslaw.warchulski@intel.com>
29 lines
1.1 KiB
CMake
29 lines
1.1 KiB
CMake
#
|
|
# Copyright (C) 2019-2022 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
if(TESTS_GEN11)
|
|
set(IGDRCL_SRCS_tests_gen11
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cl_hw_helper_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}/image_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kernel_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/sampler_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_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()
|