mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Related-To: NEO-1157 Change-Id: Ie1b907e838cfb9ad0d75cc8971d415f7c77103c9 Signed-off-by: Pawel Cieslak <pawel.cieslak@intel.com>
26 lines
698 B
CMake
26 lines
698 B
CMake
#
|
|
# Copyright (C) 2018-2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(target_name mock_gmm)
|
|
project(${target_name})
|
|
|
|
# Setting up our local list of test files
|
|
set(IGDRCL_SRCS_tests_mock_gmm
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/mock_gmm.cpp
|
|
)
|
|
add_library(${target_name} EXCLUDE_FROM_ALL OBJECT ${IGDRCL_SRCS_tests_mock_gmm})
|
|
|
|
target_include_directories(${target_name} PRIVATE
|
|
${WDK_INCLUDE_PATHS}
|
|
${NEO__GMM_INCLUDE_DIR}
|
|
)
|
|
|
|
create_project_source_tree(${target_name})
|
|
set_target_properties(${target_name} PROPERTIES FOLDER "test mocks")
|
|
target_compile_definitions(${target_name} PUBLIC)
|
|
|