mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 08:53:55 +08:00
Introduced a new warning, which is printed to build log, when the binary needs to be recompiled. Added a new flag -Wno-recompiled-from-ir to allow suppression of that message. Removed a bug related to memcpy_s from ModuleBuildLogImp::getString() and aligned it with specification. Related-To: NEO-5819 Signed-off-by: Patryk Wrobel <patryk.wrobel@intel.com>
27 lines
1.1 KiB
CMake
27 lines
1.1 KiB
CMake
#
|
|
# Copyright (C) 2019-2021 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}/create_main.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/default_cache_config.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/intermediate_representations.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/linker.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/linker.inl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/linker.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_options/compiler_options_base.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_options/compiler_options_base.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_options${BRANCH_DIR_SUFFIX}compiler_options.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/compiler_warnings/compiler_warnings.h
|
|
)
|
|
|
|
set_property(GLOBAL PROPERTY NEO_CORE_COMPILER_INTERFACE ${NEO_CORE_COMPILER_INTERFACE})
|