mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-18 13:54:58 +08:00
Current flow will be to have one synchronization point config.file. Read remains unblocking, only write(caching) operation will be blocking (lock on config.file) Related-To: NEO-4262 Signed-off-by: Diedrich, Kamil <kamil.diedrich@intel.com>
41 lines
1.4 KiB
CMake
41 lines
1.4 KiB
CMake
#
|
|
# Copyright (C) 2019-2023 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(NEO_CORE_COMPILER_INTERFACE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_cache.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_cache.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_interface.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_interface.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_interface.inl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_options.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_options.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_warnings/compiler_warnings.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/create_main.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/default_cache_config.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external_functions.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/external_functions.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/igc_platform_helper.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/igc_platform_helper.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/intermediate_representations.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/linker.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/linker.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/tokenized_string.h
|
|
)
|
|
|
|
if(WIN32)
|
|
list(APPEND NEO_CORE_COMPILER_INTERFACE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/windows/compiler_cache_windows.cpp
|
|
)
|
|
else()
|
|
list(APPEND NEO_CORE_COMPILER_INTERFACE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/linux/compiler_cache_linux.cpp
|
|
)
|
|
endif()
|
|
|
|
set_property(GLOBAL PROPERTY NEO_CORE_COMPILER_INTERFACE ${NEO_CORE_COMPILER_INTERFACE})
|
|
add_subdirectories()
|