2017-12-21 07:45:38 +08:00
|
|
|
#
|
2021-05-17 02:51:16 +08:00
|
|
|
# Copyright (C) 2018-2021 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
#
|
2018-09-18 15:11:08 +08:00
|
|
|
# SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
set(IGDRCL_SRCS_tests_program
|
2020-08-19 18:18:18 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/block_kernel_manager_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kernel_data.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kernel_data_OCL2_0.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kernel_info_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/kernel_info_from_patchtokens_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/printf_handler_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/printf_helper_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/process_debug_data_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/process_elf_binary_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/process_spir_binary_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_data_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_from_binary.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_nonuniform.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_spec_constants_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_tests.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_with_block_kernels_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_with_kernel_debug_tests.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/program_with_source.h
|
2017-12-21 07:45:38 +08:00
|
|
|
)
|
2020-01-12 01:25:26 +08:00
|
|
|
|
|
|
|
get_property(NEO_CORE_SRCS_tests_program GLOBAL PROPERTY NEO_CORE_SRCS_tests_program)
|
|
|
|
list(APPEND IGDRCL_SRCS_tests_program
|
2020-08-19 18:18:18 +08:00
|
|
|
${NEO_CORE_SRCS_tests_program}
|
2020-01-12 01:25:26 +08:00
|
|
|
)
|
|
|
|
|
2018-03-07 22:17:52 +08:00
|
|
|
target_sources(igdrcl_tests PRIVATE ${IGDRCL_SRCS_tests_program})
|
2018-10-02 21:08:23 +08:00
|
|
|
add_subdirectories()
|