18 lines
552 B
C
18 lines
552 B
C
/* Copyright (c) 2013-2016 Jeffrey Pfau
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
extern const char* const gitCommit;
|
|
extern const char* const gitCommitShort;
|
|
extern const char* const gitBranch;
|
|
extern const int gitRevision;
|
|
extern const char* const binaryName;
|
|
extern const char* const projectName;
|
|
extern const char* const projectVersion;
|
|
|
|
#endif
|