mirror of https://gitee.com/bigwinds/arangodb
14 lines
333 B
C
Executable File
14 lines
333 B
C
Executable File
#ifdef _WIN64
|
|
#ifdef _DEBUG
|
|
#define TRIAGENS_VERSION "1.1.1 [WIN64-DEBUG BETA]"
|
|
#else
|
|
#define TRIAGENS_VERSION "1.1.1 [WIN64-RELEASE BETA]"
|
|
#endif
|
|
#else
|
|
#ifdef _DEBUG
|
|
#define TRIAGENS_VERSION "1.1.1 [WIN32-DEBUG BETA]"
|
|
#else
|
|
#define TRIAGENS_VERSION "1.1.1 [WIN32-RELEASE BETA]"
|
|
#endif
|
|
#endif
|