summaryrefslogtreecommitdiffstats
path: root/deps/include/entt/config/version.h
blob: 9f7e0fc5a02c473cd60095e237c76ad39b81c54c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef ENTT_CONFIG_VERSION_H
#define ENTT_CONFIG_VERSION_H

#include "macro.h"

// NOLINTBEGIN(cppcoreguidelines-macro-usage)

#define ENTT_VERSION_MAJOR 3
#define ENTT_VERSION_MINOR 14
#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-usage)

#endif