Merge pull request #244 from softrabbit/stable-0.4
Add Doxyfile and doc directory
This commit is contained in:
29
include/versioninfo.h
Normal file
29
include/versioninfo.h
Normal file
@@ -0,0 +1,29 @@
|
||||
#ifdef __GNUC__
|
||||
#define GCC_VERSION "GCC "__VERSION__
|
||||
#else
|
||||
#define GCC_VERSION "unknown compiler"
|
||||
#endif
|
||||
|
||||
#ifdef LMMS_HOST_X86
|
||||
#define MACHINE "i386"
|
||||
#endif
|
||||
|
||||
#ifdef LMMS_HOST_X86_64
|
||||
#define MACHINE "x86_64"
|
||||
#endif
|
||||
|
||||
#ifndef MACHINE
|
||||
#define MACHINE "unknown processor"
|
||||
#endif
|
||||
|
||||
#ifdef LMMS_BUILD_LINUX
|
||||
#define PLATFORM "Linux"
|
||||
#endif
|
||||
|
||||
#ifdef LMMS_BUILD_APPLE
|
||||
#define PLATFORM "OS X"
|
||||
#endif
|
||||
|
||||
#ifdef LMMS_BUILD_WIN32
|
||||
#define PLATFORM "win32"
|
||||
#endif
|
||||
Reference in New Issue
Block a user