qpcpp/include/qstamp.cpp
2020-10-01 12:50:17 -04:00

22 lines
667 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.)
#include "qstamp.hpp"
namespace QP {
//! 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