Skip to content

Commit 8fb8acf

Browse files
committed
[meta] Add requested changes
1 parent 99f5e35 commit 8fb8acf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/inexor/vulkan-renderer/meta.hpp.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ constexpr const char* ENGINE_NAME{"${INEXOR_ENGINE_NAME}"};
1212
constexpr std::array<std::uint32_t, 3> ENGINE_VERSION{${INEXOR_ENGINE_VERSION_MAJOR}, ${INEXOR_ENGINE_VERSION_MINOR}, ${INEXOR_ENGINE_VERSION_PATCH}};
1313
constexpr const char *ENGINE_VERSION_STR{"${INEXOR_ENGINE_VERSION_MAJOR}.${INEXOR_ENGINE_VERSION_MINOR}.${INEXOR_ENGINE_VERSION_PATCH}"};
1414
constexpr const char *BUILD_GIT = "${INEXOR_GIT_SHA}";
15-
#ifndef NDEBUG
16-
constexpr const char *BUILD_TYPE = "Debug";
17-
#else
15+
#ifdef NDEBUG
1816
constexpr const char *BUILD_TYPE = "Release";
17+
#else
18+
constexpr const char *BUILD_TYPE = "Debug";
1919
#endif
2020

2121
} // namespace inexor::vulkan_renderer

0 commit comments

Comments
 (0)