summaryrefslogtreecommitdiff
path: root/src/include/version.hpp
blob: 2270a59257af41b67cb9aaf594f4a8de11bb29b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * MRustC - Rust Compiler
 * - By John Hodge (Mutabah/thePowersGang)
 *
 * version.hpp
 * - Compiler version number
 */
#pragma once

#include <string>

extern unsigned int giVersion_Major;
extern unsigned int giVersion_Minor;
extern unsigned int giVersion_Patch;
extern const char* gsVersion_GitHash;
extern const char* gsVersion_GitShortHash;
extern const char* gsVersion_BuildTime;
extern bool gbVersion_GitDirty;

extern ::std::string Version_GetString();