2017-12-21 07:45:38 +08:00
|
|
|
#
|
2021-03-31 22:11:31 +08:00
|
|
|
# Copyright (C) 2019-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
|
|
|
#
|
|
|
|
|
2019-10-07 19:20:48 +08:00
|
|
|
set(NEO_CORE_PREAMBLE_TESTS
|
2020-08-19 18:18:18 +08:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/preamble_fixture.h
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/preamble_tests.cpp
|
2018-03-07 22:17:52 +08:00
|
|
|
)
|
2021-11-22 18:18:53 +08:00
|
|
|
|
|
|
|
if(TESTS_XE_HPG_CORE)
|
|
|
|
list(APPEND NEO_CORE_PREAMBLE_TESTS
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_preamble_xe_hpg_core.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-06-10 23:54:02 +08:00
|
|
|
target_sources(${TARGET_NAME} PRIVATE ${NEO_CORE_PREAMBLE_TESTS})
|
2021-03-31 22:11:31 +08:00
|
|
|
add_subdirectories()
|