58 lines
2.0 KiB
C++
58 lines
2.0 KiB
C++
// -*- C++ -*-
|
|
// VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator.
|
|
// Copyright (C) 1999-2003 Forgotten
|
|
// Copyright (C) 2004 Forgotten and the VBA development team
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2, or(at your option)
|
|
// any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software Foundation,
|
|
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#define VBA_NAME "VisualBoyAdvance-M"
|
|
|
|
#ifdef WIN32
|
|
#include "svnrev.h"
|
|
#else
|
|
#ifdef SVN_REV
|
|
#define SVN_REV_STR SVN_REV
|
|
#else
|
|
#define SVN_REV_STR ""
|
|
#endif
|
|
#endif
|
|
|
|
#define VBA_FEATURE_STRING ""
|
|
|
|
#ifdef DEBUG
|
|
#define VBA_SUBVERSION_STRING " debug"
|
|
#elif defined(PUBLIC_RELEASE)
|
|
#define VBA_SUBVERSION_STRING ""
|
|
#else
|
|
#define VBA_SUBVERSION_STRING " (SVN" SVN_REV_STR ")"
|
|
#endif
|
|
|
|
#if defined(_MSC_VER)
|
|
#define VBA_COMPILER ""
|
|
#define VBA_COMPILER_DETAIL " msvc " _Py_STRINGIZE(_MSC_VER)
|
|
#define _Py_STRINGIZE(X) _Py_STRINGIZE1((X))
|
|
#define _Py_STRINGIZE1(X) _Py_STRINGIZE2 ## X
|
|
#define _Py_STRINGIZE2(X) #X
|
|
//re: http://72.14.203.104/search?q=cache:HG-okth5NGkJ:mail.python.org/pipermail/python-checkins/2002-November/030704.html+_msc_ver+compiler+version+string&hl=en&gl=us&ct=clnk&cd=5
|
|
#else
|
|
// TODO: make for others compilers
|
|
#define VBA_COMPILER ""
|
|
#define VBA_COMPILER_DETAIL ""
|
|
#endif
|
|
|
|
#define VBA_VERSION_STRING " " "1.8.0" VBA_SUBVERSION_STRING VBA_FEATURE_STRING VBA_COMPILER
|
|
#define VBA_NAME_AND_VERSION " " VBA_NAME VBA_VERSION_STRING
|
|
#define VBA_NAME_AND_SUBVERSION " " VBA_NAME VBA_SUBVERSION_STRING
|