all repos — mgba @ b78825738ee6d094e892c3980c730d67db315c13

mGBA Game Boy Advance Emulator

src/core/version.c.in (view raw)

 1/* Copyright (c) 2013-2016 Jeffrey Pfau
 2 *
 3 * This Source Code Form is subject to the terms of the Mozilla Public
 4 * License, v. 2.0. If a copy of the MPL was not distributed with this
 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 6#include <mgba/core/version.h>
 7
 8const char* const gitCommit = "${GIT_COMMIT}";
 9const char* const gitCommitShort = "${GIT_COMMIT_SHORT}";
10const char* const gitBranch = "${GIT_BRANCH}";
11const int gitRevision = ${GIT_REV};
12const char* const binaryName = "${BINARY_NAME}";
13const char* const projectName = "${PROJECT_NAME}";
14const char* const projectVersion = "${VERSION_STRING}";