Add new macro _RELEASE_BUILD_WITH_REGKEYS

Change-Id: I679a17e99d7928b3caf10f80a581fb386aaf7751
This commit is contained in:
Kowalczuk, Jakub
2018-06-05 16:38:01 +02:00
committed by sys_ocldev
parent 6f26ced3b5
commit 571babf1d5
2 changed files with 5 additions and 1 deletions

View File

@@ -37,7 +37,7 @@ enum class DebugFunctionalityLevel {
#if defined(_DEBUG)
constexpr DebugFunctionalityLevel globalDebugFunctionalityLevel = DebugFunctionalityLevel::Full;
#elif defined(_RELEASE_INTERNAL)
#elif defined(_RELEASE_INTERNAL) || defined(_RELEASE_BUILD_WITH_REGKEYS)
constexpr DebugFunctionalityLevel globalDebugFunctionalityLevel = DebugFunctionalityLevel::RegKeys;
#else
constexpr DebugFunctionalityLevel globalDebugFunctionalityLevel = DebugFunctionalityLevel::None;