OSCAR-code/sleepyhead/version.h
Sean Stangl 012e9fd314 Auto-convert the main source directory with astyle. "The Huge Patch"
The files daily.cpp and daily.h are omitted, pending some other cleanup patches landing first.

Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
2014-04-17 16:15:28 +10:00

43 lines
1.2 KiB
C

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
*
* Version
*
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the Linux
* distribution for more details. */
#ifndef VERSION_H
#define VERSION_H
#include <qglobal.h>
const int major_version = 0;
const int minor_version = 9;
const int revision_number = 4;
const int release_number = 4;
#ifdef UNSTABLE_BUILD
const QString ReleaseStatus = "unstable";
#else
const QString ReleaseStatus = "beta";
#endif
const QString VersionString = QString().sprintf("%i.%i.%i", major_version, minor_version,
revision_number);
const QString FullVersionString = QString().sprintf("%i.%i.%i-%i", major_version, minor_version,
revision_number, release_number) + " " + ReleaseStatus;
#ifdef Q_OS_MAC
const QString PlatformString = "MacOSX";
#elif defined(Q_OS_WIN32)
const QString PlatformString = "Win32";
#elif defined(Q_OS_LINUX)
const QString PlatformString = "Linux";
#endif
#endif // VERSION_H