mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
extract common logic to test fixture Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
21 lines
797 B
CMake
21 lines
797 B
CMake
#
|
|
# Copyright (C) 2023 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
target_sources(neo_shared_tests PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/release_helper_tests_base.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/release_helper_tests_base.h
|
|
)
|
|
if(TESTS_XE_HPG_CORE)
|
|
target_sources(neo_shared_tests PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/release_helper_12_55_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/release_helper_12_56_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/release_helper_12_57_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/release_helper_12_70_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/release_helper_12_71_tests.cpp
|
|
)
|
|
endif()
|
|
add_subdirectories() |