version.cpp

Go to the documentation of this file.
00001 /*
00002 Copyright (C) 2004-2006 The Pentagram team
00003 
00004 This program is free software; you can redistribute it and/or
00005 modify it under the terms of the GNU General Public License
00006 as published by the Free Software Foundation; either version 2
00007 of the License, or (at your option) any later version.
00008 
00009 This program is distributed in the hope that it will be useful,
00010 but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012 GNU General Public License for more details.
00013 
00014 You should have received a copy of the GNU General Public License
00015 along with this program; if not, write to the Free Software
00016 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
00017 */
00018 
00019 #include "pent_include.h"
00020 
00021 namespace PentagramVersion {
00022 
00023 const char *version = VERSION;
00024 
00025 const char *features = ""
00026 #ifdef DEBUG
00027   "debug "
00028 #endif
00029 #ifdef USE_VALGRIND
00030   "valgrind "
00031 #endif
00032 #ifdef USE_TIMIDITY_MIDI
00033   "Timidity "
00034 #endif
00035 #ifdef USE_FMOPL_MIDI
00036   "FMOPL "
00037 #endif
00038 #ifdef USE_FLUIDSYNTH_MIDI
00039   "FluidSynth "
00040 #endif
00041 #ifdef USE_ALSA_MIDI
00042   "ALSA "
00043 #endif
00044 #ifdef USE_HQ2X_SCALER
00045   "hq2x "
00046 #endif
00047 #ifdef BUILTIN_DATA
00048   "nodata "
00049 #endif
00050 ;
00051 
00052 const char *buildtime = __DATE__ " " __TIME__;
00053 
00054 }

Generated on Fri Jul 27 22:27:52 2007 for pentagram by  doxygen 1.4.7