mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
Change-Id: I6c01d065ff3372fe7583ed50ed51595ebeb53e54 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
29 lines
1.2 KiB
CMake
29 lines
1.2 KiB
CMake
#
|
|
# Copyright (C) 2018-2019 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(IGDRCL_SRCS_tests_os_interface_base
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/debug_settings_manager_fixture.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/debug_settings_manager_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/device_factory_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/hw_info_config_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/hw_info_config_tests.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/mock_performance_counters.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/mock_performance_counters.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/os_interface_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/os_library_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/os_memory_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/performance_counters_gen_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/performance_counters_tests.cpp
|
|
)
|
|
|
|
get_property(NEO_CORE_OS_INTERFACE_AUB_TESTS GLOBAL PROPERTY NEO_CORE_OS_INTERFACE_AUB_TESTS)
|
|
list(APPEND IGDRCL_SRCS_tests_os_interface_base ${NEO_CORE_OS_INTERFACE_AUB_TESTS})
|
|
|
|
target_sources(igdrcl_tests PRIVATE ${IGDRCL_SRCS_tests_os_interface_base})
|
|
set_property(GLOBAL PROPERTY IGDRCL_SRCS_tests_os_interface_base ${IGDRCL_SRCS_tests_os_interface_base})
|
|
add_subdirectories()
|