mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-09 02:07:04 +08:00
19 lines
428 B
C
19 lines
428 B
C
#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
|