Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[cmake] Add windows resource file for application icon and metadata #384

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Prev Previous commit
[meta] Add requested changes
  • Loading branch information
IAmNotHanni committed Jul 30, 2021
commit 0458ae4f5d24c6b29f61d2e9fd0602f7ebeb85e3
6 changes: 3 additions & 3 deletions include/inexor/vulkan-renderer/meta.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ constexpr const char* ENGINE_NAME{"${INEXOR_ENGINE_NAME}"};
constexpr std::array<std::uint32_t, 3> 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