mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-07-12 17:22:26 -04:00
iff2html working
This commit is contained in:
parent
deaf3327e0
commit
4cd716e94d
89 changed files with 7711 additions and 3 deletions
17
library/tools/FARDive/version.hpp
Normal file
17
library/tools/FARDive/version.hpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
#define FD_VERSION_A 0
|
||||
#define FD_VERSION_B 0
|
||||
#define FD_VERSION_C 1
|
||||
#define FD_REVISION 1
|
||||
|
||||
//You don't have to touch the following
|
||||
#define xstr(x) str(x)
|
||||
#define str(x) #x //Yes, double levels is required. See <http://gcc.gnu.org/onlinedocs/cpp/Stringification.html>
|
||||
#define FDVERSION L"" \
|
||||
xstr(FD_VERSION_A) \
|
||||
L"." \
|
||||
xstr(FD_VERSION_B) \
|
||||
L"." \
|
||||
xstr(FD_VERSION_C) \
|
||||
L" (rev. " \
|
||||
xstr(FD_REVISION) \
|
||||
L")"
|
Loading…
Add table
Add a link
Reference in a new issue