From 8fb8acf670c3bcaf3f8e56b7161814ca26c0d7a6 Mon Sep 17 00:00:00 2001 From: Johannes Schneider Date: Thu, 22 Jul 2021 18:42:19 +0200 Subject: [PATCH] [meta] Add requested changes --- include/inexor/vulkan-renderer/meta.hpp.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/inexor/vulkan-renderer/meta.hpp.in b/include/inexor/vulkan-renderer/meta.hpp.in index 395e4c978..c926a5d89 100644 --- a/include/inexor/vulkan-renderer/meta.hpp.in +++ b/include/inexor/vulkan-renderer/meta.hpp.in @@ -12,10 +12,10 @@ constexpr const char* ENGINE_NAME{"${INEXOR_ENGINE_NAME}"}; constexpr std::array ENGINE_VERSION{${INEXOR_ENGINE_VERSION_MAJOR}, ${INEXOR_ENGINE_VERSION_MINOR}, ${INEXOR_ENGINE_VERSION_PATCH}}; constexpr const char *ENGINE_VERSION_STR{"${INEXOR_ENGINE_VERSION_MAJOR}.${INEXOR_ENGINE_VERSION_MINOR}.${INEXOR_ENGINE_VERSION_PATCH}"}; constexpr const char *BUILD_GIT = "${INEXOR_GIT_SHA}"; -#ifndef NDEBUG -constexpr const char *BUILD_TYPE = "Debug"; -#else +#ifdef NDEBUG constexpr const char *BUILD_TYPE = "Release"; +#else +constexpr const char *BUILD_TYPE = "Debug"; #endif } // namespace inexor::vulkan_renderer