NSIS/Docs/src/bin/halibut/version.c
kichik b23696e64c Hacked up halibut source code
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1534 212acab6-be3b-0410-9dea-997c60f758d6
2002-11-01 18:22:40 +00:00

13 lines
209 B
C

/*
* version.c: version string
*/
#include <stdio.h>
#ifndef VERSION
#define VER "anonymous build (" __DATE__ " " __TIME__ ")"
#else
#define VER "version " VERSION
#endif
const char *const version = VER;