Files
Toy/source/toy_common.c

9 lines
261 B
C

#include "toy_common.h"
//defined separately, as compilation can take several seconds, invalidating the comparisons of __TIME__
static const char* build = __DATE__ " " __TIME__ ";development branch";
const char* Toy_private_version_build() {
return build;
}