mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
- Move logic from product helper to compiler product helper - Add method for adjusting fp16 and extra capabilities using release helper (if present). Signed-off-by: Kacper Nowak <kacper.nowak@intel.com>
30 lines
1.2 KiB
CMake
30 lines
1.2 KiB
CMake
#
|
|
# Copyright (C) 2019-2024 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
target_sources(neo_shared_tests PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_cache_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_interface_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_options_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external_functions_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/intermediate_representations_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/linker_tests.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}${BRANCH_DIR_SUFFIX}oclc_extensions_extra_tests.cpp
|
|
)
|
|
|
|
if(WIN32)
|
|
target_sources(neo_shared_tests PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/windows/compiler_cache_tests_windows.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/windows/default_cl_cache_config_tests.cpp
|
|
)
|
|
else()
|
|
target_sources(neo_shared_tests PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/linux/compiler_cache_tests_linux.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/linux/default_cl_cache_config_tests.cpp
|
|
)
|
|
endif()
|
|
add_subdirectories()
|