The open source repository for the action RPG game in development by Sig Productions titled 'Adventures in Lestoria'!
https://forums.lestoria.net
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
539 B
17 lines
539 B
#pragma once
|
|
#define VERSION_MAJOR 0
|
|
#define VERSION_MINOR 2
|
|
#define VERSION_PATCH 0
|
|
#define VERSION_BUILD 662
|
|
|
|
#define stringify(a) stringify_(a)
|
|
#define stringify_(a) #a
|
|
|
|
#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, VERSION_BUILD
|
|
#define VER_FILE_VERSION_STR stringify(VERSION_MAJOR) \
|
|
"." stringify(VERSION_MINOR) \
|
|
"." stringify(VERSION_PATCH) \
|
|
"." stringify(VERSION_BUILD) \
|
|
|
|
#define VER_PRODUCT_VERSION VER_FILE_VERSION
|
|
#define VER_PRODUCT_VERSION_STR VER_FILE_VERSION_STR
|
|
|