Is it possible to generate an embedded Unix timestamp via a preprocessor macro?
For instance: #define VERSION_EXPIRE __TIMESTAMP__
#define VERSION_EXPIRE __TIMESTAMP__
The reason for th
Add a custom build step before preprocessing that uses sed to replace __TIMESTAMP__ with date. The easiest way to do this is to tell Xcode to use a makefile.
__TIMESTAMP__
date