mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: I4ffd729beeed95b0806dd284665c72fb424b0ffc Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
29 lines
1013 B
CMake
29 lines
1013 B
CMake
#
|
|
# Copyright (C) 2019-2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
if(TESTS_GEN9)
|
|
|
|
set(NEO_CORE_TESTS_GEN9
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/preamble_tests_gen9.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/simd_helper_tests_gen9.cpp
|
|
)
|
|
set_property(GLOBAL PROPERTY NEO_CORE_TESTS_GEN9 ${NEO_CORE_TESTS_GEN9})
|
|
add_subdirectories()
|
|
|
|
target_sources(${TARGET_NAME} PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/command_encoder_tests_gen9.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/image_surface_state_tests_gen9.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_command_encoder_gen9.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_encode_math_gen9.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_preemption_gen9.cpp
|
|
${COMPUTE_RUNTIME_ULT_GEN9}
|
|
${NEO_SOURCE_DIR}/opencl/test/unit_test/gen9/unit_test_helper_gen9.cpp
|
|
)
|
|
|
|
endif()
|