2020-03-24 12:17:13 +01:00
|
|
|
#
|
|
|
|
# Copyright (C) 2020 Intel Corporation
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
|
|
|
|
set(IGDRCL_SRCS_test_macros
|
2020-08-19 12:18:18 +02:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_checks_ocl.cpp
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_checks_ocl.h
|
2020-03-24 12:17:13 +01:00
|
|
|
)
|
|
|
|
target_sources(igdrcl_tests PRIVATE ${IGDRCL_SRCS_test_macros})
|
|
|
|
|
|
|
|
get_property(NEO_CORE_test_macros GLOBAL PROPERTY NEO_CORE_test_macros)
|
|
|
|
list(APPEND IGDRCL_SRCS_test_macros
|
2020-08-19 12:18:18 +02:00
|
|
|
${NEO_CORE_test_macros}
|
2020-03-24 12:17:13 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
target_sources(igdrcl_tests PRIVATE ${IGDRCL_SRCS_test_macros})
|
2020-08-19 12:18:18 +02:00
|
|
|
set_property(GLOBAL PROPERTY IGDRCL_SRCS_test_macros ${IGDRCL_SRCS_test_macros})
|