#ifndef ENTT_CONFIG_VERSION_H #define ENTT_CONFIG_VERSION_H #include "macro.h" // NOLINTBEGIN(cppcoreguidelines-macro-*,modernize-macro-*) #define ENTT_VERSION_MAJOR 4 #define ENTT_VERSION_MINOR 0 #define ENTT_VERSION_PATCH 0 #define ENTT_VERSION \ ENTT_XSTR(ENTT_VERSION_MAJOR) \ "." ENTT_XSTR(ENTT_VERSION_MINOR) "." ENTT_XSTR(ENTT_VERSION_PATCH) // NOLINTEND(cppcoreguidelines-macro-*,modernize-macro-*) #endif