Files
compute-runtime/shared/test/unit_test/aub/CMakeLists.txt
Zbigniew Zdanowicz 732fbe5c7f Move aub unit tests to shared directory
Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
2021-12-23 17:35:33 +01:00

21 lines
534 B
CMake

#
# Copyright (C) 2018-2021 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
set(NEO_SHARED_aub_helper_tests
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
${CMAKE_CURRENT_SOURCE_DIR}/aub_center_tests.cpp
${CMAKE_CURRENT_SOURCE_DIR}/aub_helper_tests.cpp
)
if(NOT DEFINED AUB_STREAM_PROJECT_NAME)
list(APPEND NEO_SHARED_aub_helper_tests
${CMAKE_CURRENT_SOURCE_DIR}/aub_center_using_aubstream_stubs_tests.cpp
)
endif()
target_sources(${TARGET_NAME} PRIVATE ${NEO_SHARED_aub_helper_tests})
add_subdirectories()