mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
This commit: - Removes usings e.g. ::testing::Return - Removes unnecessary gmock inclues - Replaces Gmock macros (e.g. EXPECT_THAT) with our custom implementations Related-To: NEO-4941 Signed-off-by: Fabian Zwolinski <fabian.zwolinski@intel.com>
15 lines
399 B
CMake
15 lines
399 B
CMake
#
|
|
# Copyright (C) 2021-2022 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(NEO_CORE_test_macros
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_checks_shared.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test_checks_shared.h
|
|
)
|
|
add_subdirectories()
|
|
set_property(GLOBAL PROPERTY NEO_CORE_test_macros ${NEO_CORE_test_macros})
|