mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
24 lines
723 B
CMake
24 lines
723 B
CMake
#
|
|
# Copyright (C) 2021-2022 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
if(TESTS_ADLP)
|
|
set(IGDRCL_SRCS_tests_gen12lp_adlp_excludes
|
|
${CMAKE_CURRENT_SOURCE_DIR}/excludes_ocl_adlp.cpp
|
|
)
|
|
set_property(GLOBAL APPEND PROPERTY IGDRCL_SRCS_tests_excludes ${IGDRCL_SRCS_tests_gen12lp_adlp_excludes})
|
|
|
|
set(IGDRCL_SRCS_tests_gen12lp_adlp
|
|
${IGDRCL_SRCS_tests_gen12lp_adlp_excludes}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
)
|
|
|
|
get_property(NEO_CORE_TESTS_GEN12LP_ADLP GLOBAL PROPERTY NEO_CORE_TESTS_GEN12LP_ADLP)
|
|
list(APPEND IGDRCL_SRCS_tests_gen12lp_adlp ${NEO_CORE_TESTS_GEN12LP_ADLP})
|
|
|
|
target_sources(igdrcl_tests PRIVATE ${IGDRCL_SRCS_tests_gen12lp_adlp})
|
|
add_subdirectories()
|
|
endif()
|