mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-09 22:43:00 +08:00
Currently the whole code resides within the opencl/ tree, but the mechanism is meant to be reused in L0 for kernel-ISA allocations optimization (further work). This commit is a preparation step, which extracts the generic mechanism and moves the extracted part under the shared/ tree. Related-To: NEO-7788 Signed-off-by: Maciej Bielski <maciej.bielski@intel.com>
31 lines
1.5 KiB
CMake
31 lines
1.5 KiB
CMake
#
|
|
# Copyright (C) 2019-2023 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
target_sources(neo_shared_tests PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}${BRANCH_DIR_SUFFIX}debug_file_reader_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/buffer_pool_allocator_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/const_stringref_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/containers_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/containers_tests_helpers.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cpuintrinsics_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/debug_file_reader_tests.inl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/debug_settings_reader_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/heap_allocator_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/io_functions_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/logger_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/numeric_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/perf_profiler_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/reference_tracked_object_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/software_tags_manager_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/spinlock_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tag_allocator_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/timer_util_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/vec_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/wait_util_tests.cpp
|
|
)
|
|
|
|
add_subdirectories() |