/* * Copyright (C) 2021-2023 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include namespace NEO { namespace AppResourceDefines { template static constexpr bool hasResourceTag = false; #if defined(_DEBUG) || (_RELEASE_INTERNAL) template static constexpr bool hasResourceTag = true; constexpr bool resourceTagSupport = true; #else constexpr bool resourceTagSupport = false; template static constexpr bool hasResourceTag = false; #endif constexpr uint32_t maxStrLen = 8u; } // namespace AppResourceDefines } // namespace NEO