2019-09-19 01:32:33 +08:00
|
|
|
#
|
2021-05-17 02:51:16 +08:00
|
|
|
# Copyright (C) 2019-2021 Intel Corporation
|
2019-09-19 01:32:33 +08:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
|
|
|
|
if(TESTS_GEN12LP)
|
2021-06-25 21:55:08 +08:00
|
|
|
set(IGDRCL_SRCS_tests_gen12lp_excludes
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/excludes_gen12lp.cpp
|
|
|
|
)
|
|
|
|
set_property(GLOBAL APPEND PROPERTY IGDRCL_SRCS_tests_excludes ${IGDRCL_SRCS_tests_gen12lp_excludes})
|
|
|
|
|
2019-09-19 01:32:33 +08:00
|
|
|
set(IGDRCL_SRCS_tests_gen12lp
|
2021-06-25 21:55:08 +08:00
|
|
|
${IGDRCL_SRCS_tests_gen12lp_excludes}
|
2020-08-19 18:18:18 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/aub_command_stream_receiver_tests_gen12lp.inl
|
2020-10-01 18:22:54 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/buffer_tests_gen12lp.inl
|
2020-08-19 18:18:18 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/coherency_tests_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/command_stream_receiver_hw_tests_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/command_stream_receiver_simulated_common_hw_tests_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compute_mode_tests_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/enqueue_media_kernel_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/gen12lp_tests_wrapper.cpp
|
2020-09-03 15:06:11 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/gpgpu_walker_tests_gen12lp.cpp
|
2020-08-19 18:18:18 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/hw_helper_tests_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/image_tests_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kernel_tests_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/profiling_tests_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/sampler_tests_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tbx_command_stream_receiver_tests_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_device_caps_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_platform_caps_gen12lp.inl
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_sample_gen12lp.inl
|
2019-09-19 01:32:33 +08:00
|
|
|
)
|
2019-10-07 19:20:48 +08:00
|
|
|
|
|
|
|
get_property(NEO_CORE_TESTS_GEN12LP GLOBAL PROPERTY NEO_CORE_TESTS_GEN12LP)
|
|
|
|
list(APPEND IGDRCL_SRCS_tests_gen12lp ${NEO_CORE_TESTS_GEN12LP})
|
|
|
|
|
2019-09-19 01:32:33 +08:00
|
|
|
target_sources(igdrcl_tests PRIVATE ${IGDRCL_SRCS_tests_gen12lp})
|
|
|
|
add_subdirectories()
|
|
|
|
endif()
|