12 lines
16 KiB
C
12 lines
16 KiB
C
#pragma once
|
|
#define ORBIS_TOOLBOX_MAJOR 2
|
|
#define ORBIS_TOOLBOX_MINOR 0
|
|
#define ORBIS_TOOLBOX_BUILDVERSION 347
|
|
#define stringify(a) stringify_(a)
|
|
#define stringify_(a) #a
|
|
#if defined(ORBIS_TOOLBOX_DEBUG)
|
|
#define ORBIS_TOOLBOX_BUILDSTRING ("[Orbis Toolbox " stringify(ORBIS_TOOLBOX_MAJOR) "." stringify(ORBIS_TOOLBOX_MINOR) "] Dev Build " stringify(ORBIS_TOOLBOX_BUILDVERSION) " " __DATE__ " " __TIME__)
|
|
#else
|
|
#define ORBIS_TOOLBOX_BUILDSTRING ("[Orbis Toolbox " stringify(ORBIS_TOOLBOX_MAJOR) "." stringify(ORBIS_TOOLBOX_MINOR) "] Build " stringify(ORBIS_TOOLBOX_BUILDVERSION) " " __DATE__ " " __TIME__)
|
|
#endif
|