mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-01-14 05:42:57 +08:00
22 lines
711 B
C++
22 lines
711 B
C++
/// @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 {
|
|
|
|
extern char const BUILD_DATE[12];
|
|
extern char const BUILD_TIME[9];
|
|
|
|
//! the calendar date of the last translation of the form: "Mmm dd yyyy"
|
|
char const BUILD_DATE[12] = __DATE__;
|
|
|
|
//! the time of the last translation of the form: "hh:mm:ss"
|
|
char const BUILD_TIME[9] = __TIME__;
|
|
|
|
} // namespace QP
|