mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
Change-Id: I46144a52d755e03587b3b1e41d1883ddf4230889 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
23 lines
516 B
CMake
23 lines
516 B
CMake
#
|
|
# Copyright (C) 2017-2019 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
|
|
)
|
|
|
|
|