mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 21:18:24 +08:00
Related-To: NEO-4941 Change-Id: I47ebddd5a902f20b79c37e18a49f0bba652fd119 Signed-off-by: Konstanty Misiak <konstanty.misiak@intel.com>
30 lines
1.0 KiB
CMake
30 lines
1.0 KiB
CMake
#
|
|
# Copyright (C) 2019-2020 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set(NEO_CORE_DEBUG_SETTINGS
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
|
|
${CMAKE_CURRENT_SOURCE_DIR}/debug_settings_manager.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/debug_settings_manager.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/debug_variables_base.inl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/debug_variables_helper.h
|
|
${CMAKE_CURRENT_SOURCE_DIR}/release_variables.inl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/definitions${BRANCH_DIR_SUFFIX}/debug_variables.inl
|
|
${CMAKE_CURRENT_SOURCE_DIR}/definitions${BRANCH_DIR_SUFFIX}/translate_debug_settings.cpp
|
|
${CMAKE_CURRENT_SOURCE_DIR}/definitions/translate_debug_settings.h
|
|
)
|
|
|
|
if(WIN32)
|
|
list(APPEND NEO_CORE_DEBUG_SETTINGS
|
|
${CMAKE_CURRENT_SOURCE_DIR}/windows/debug_variables_helper.cpp
|
|
)
|
|
elseif(UNIX)
|
|
list(APPEND NEO_CORE_DEBUG_SETTINGS
|
|
${CMAKE_CURRENT_SOURCE_DIR}/linux/debug_variables_helper.cpp
|
|
)
|
|
endif()
|
|
|
|
set_property(GLOBAL PROPERTY NEO_CORE_DEBUG_SETTINGS ${NEO_CORE_DEBUG_SETTINGS})
|