qpc/include/qstamp.c

20 lines
683 B
C
Raw Normal View History

2015-09-04 12:08:22 -04:00
/**
* @file
2015-09-29 11:33:40 -04:00
* @brief Application build time-stamp
* @note
* This module needs to be re-compiled in every new software build. To achive
* this, it is recommended to delete the object file (qstamp.o, or qstamp.obj)
* in the build directory before each build. (Most development tools allow
* you to specify a pre-build command, which is the ideal place to delete
* the qstamp object file.)
2015-09-04 12:08:22 -04:00
*/
2017-09-01 16:30:05 -04:00
extern char const Q_BUILD_DATE[12];
extern char const Q_BUILD_TIME[9];
2015-09-04 12:08:22 -04:00
2015-09-29 11:33:40 -04:00
/*! the calendar date of the last translation of the form: "Mmm dd yyyy" */
2017-09-01 16:30:05 -04:00
char const Q_BUILD_DATE[12] = __DATE__;
2015-09-04 12:08:22 -04:00
2015-09-29 11:33:40 -04:00
/*! the time of the last translation of the form: "hh:mm:ss" */
2017-09-01 16:30:05 -04:00
char const Q_BUILD_TIME[9] = __TIME__;