NewLang Project
Yet another programm language
Loading...
Searching...
No Matches
version.h
Go to the documentation of this file.
1
6#define VERSION_DATE_BUILD_STR "2024.11.22 21:09:37"
7#define VERSION_SOURCE_FULL_ID "v0.5.0-2827270c 2024.11.22 21:09:37"
8
9#include <stdint.h>
10extern const uint8_t VERSION_MAJOR;
11extern const uint8_t VERSION_MINOR;
12extern const uint8_t VERSION_PATCH;
13
14#define VERSION (0 << 4 | 5)
15#define VERSION_GIT_SOURCE "v0.5.0-2827270c"
16
17extern const char * GIT_SOURCE;
18extern const char * DATE_BUILD_STR;
19extern const char * SOURCE_FULL_ID;
20
const uint8_t VERSION_MAJOR
Definition version.cpp:8
const char * DATE_BUILD_STR
Definition version.cpp:13
const uint8_t VERSION_MINOR
Definition version.cpp:9
const uint8_t VERSION_PATCH
Definition version.cpp:10
const char * GIT_SOURCE
Definition version.cpp:12
const char * SOURCE_FULL_ID
Definition version.cpp:14