mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
31 lines
642 B
C++
31 lines
642 B
C++
#include <Core/Core.h>
|
|
#include <build_info.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
StdLogSetup(LOG_COUT|LOG_FILE);
|
|
|
|
#ifdef bmTIME
|
|
LOG("Compiled " << bmTIME << ", " << (GetSysDate() - (Date)bmTIME) << " day(s) ago");
|
|
#endif
|
|
#ifdef bmUSER
|
|
LOG("Compiled by user " << bmUSER);
|
|
#endif
|
|
#ifdef bmMACHINE
|
|
LOG("Compiled on machine " << bmMACHINE);
|
|
#endif
|
|
#ifdef bmSVN_REVISION
|
|
LOG("Svn revision " << bmSVN_REVISION);
|
|
#endif
|
|
#ifdef bmGIT_REVCOUNT
|
|
LOG("Git revcount " << bmGIT_REVCOUNT);
|
|
#endif
|
|
#ifdef bmGIT_HASH
|
|
LOG("Git hash " << bmGIT_HASH);
|
|
#endif
|
|
#ifdef bmSVN_URL
|
|
LOG("Svn url " << bmSVN_URL);
|
|
#endif
|
|
}
|