mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
Related-To: NEO-6452 Signed-off-by: Sebastian Luzynski <sebastian.jozef.luzynski@intel.com>
36 lines
1.3 KiB
CMake
36 lines
1.3 KiB
CMake
#
|
|
# Copyright (C) 2018-2022 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(IGDRCL_SRCS_tests_helpers
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/app_resource_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/array_count_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/basic_math_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/bit_helpers_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_hw_info_config_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/debug_helpers_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/deferred_deleter_helpers_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/dirty_state_helpers_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/extendable_enum_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/flush_stamp_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/get_gpgpu_engines_tests.inl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/get_info_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/gtest_helpers.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/l3_range_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/ptr_math_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_debug_variables.inl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_hw_info_config.cpp
|
|
)
|
|
|
|
if(COMPILER_SUPPORTS_NEON)
|
|
list(APPEND IGDRCL_SRCS_tests_helpers
|
|
${CMAKE_CURRENT_SOURCE_DIR}/uint16_neon_tests.cpp
|
|
)
|
|
endif()
|
|
|
|
target_sources(${TARGET_NAME} PRIVATE ${IGDRCL_SRCS_tests_helpers})
|
|
add_subdirectories()
|