mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Change-Id: I4ffd729beeed95b0806dd284665c72fb424b0ffc Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
28 lines
1008 B
CMake
28 lines
1008 B
CMake
#
|
|
# Copyright (C) 2019-2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
if(TESTS_GEN11)
|
|
set(NEO_CORE_TESTS_GEN11
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/preamble_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/simd_helper_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_preamble_gen11.cpp
|
|
)
|
|
set_property(GLOBAL PROPERTY NEO_CORE_TESTS_GEN11 ${NEO_CORE_TESTS_GEN11})
|
|
add_subdirectories()
|
|
|
|
target_sources(${TARGET_NAME} PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/command_encoder_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/image_surface_state_tests_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_encode_math_gen11.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_preemption_gen11.cpp
|
|
${COMPUTE_RUNTIME_ULT_GEN11}
|
|
${NEO_SOURCE_DIR}/opencl/test/unit_test/gen11/unit_test_helper_gen11.cpp
|
|
)
|
|
|
|
endif()
|