qpcpp/include/qstamp.cpp

23 lines
712 B
C++
Raw Normal View History

2015-09-29 11:34:38 -04:00
/// @file
/// @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 action, which is the ideal place to delete
/// the qstamp object file.)
namespace QP {
2017-09-01 16:29:03 -04:00
extern char const BUILD_DATE[12];
extern char const BUILD_TIME[9];
2015-09-29 11:34:38 -04:00
//! the calendar date of the last translation of the form: "Mmm dd yyyy"
2017-09-01 16:29:03 -04:00
char const BUILD_DATE[12] = __DATE__;
2015-09-29 11:34:38 -04:00
//! the time of the last translation of the form: "hh:mm:ss"
2017-09-01 16:29:03 -04:00
char const BUILD_TIME[9] = __TIME__;
2015-09-29 11:34:38 -04:00
2015-12-31 14:56:37 -05:00
} // namespace QP
2018-03-19 14:51:26 -04:00