mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Dates corrected in copyright headers to reflect original publication date (2018 for OpenCL, 2020 for Level Zero). Signed-off-by: lgotszal <lukasz.gotszald@intel.com>
22 lines
515 B
CMake
22 lines
515 B
CMake
#
|
|
# Copyright (C) 2018-2021 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
cmake_minimum_required(VERSION 3.2.0 FATAL_ERROR)
|
|
|
|
add_subdirectory(api)
|
|
add_subdirectory(fixtures)
|
|
|
|
# Setting up our local list of test files
|
|
set(IGDRCL_SRCS_performance_tests
|
|
${IGDRCL_SRCS_perf_tests_api}
|
|
${IGDRCL_SRCS_perf_tests_fixtures}
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/options_perf_tests.cpp"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/perf_test_utils.cpp"
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/perf_test_utils.h"
|
|
PARENT_SCOPE
|
|
)
|
|
|