all repos — mgba @ f6755a6e1b7b0cf2b944cd8ca842746f11d6bf82

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
 8MGBA_EXPORT const char* const gitCommit = "${GIT_COMMIT}";
 9MGBA_EXPORT const char* const gitCommitShort = "${GIT_COMMIT_SHORT}";
10MGBA_EXPORT const char* const gitBranch = "${GIT_BRANCH}";
11MGBA_EXPORT const int gitRevision = ${GIT_REV};
12MGBA_EXPORT const char* const binaryName = "${BINARY_NAME}";
13MGBA_EXPORT const char* const projectName = "${PROJECT_NAME}";
14MGBA_EXPORT const char* const projectVersion = "${VERSION_STRING}";