AppleWin/source/linux/version.cpp
Andrea Odetti da7ac10987 Add AppleWin version number in the About dialog box.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2018-02-06 16:50:50 +00:00

10 lines
180 B
C++

#include "linux/version.h"
#include "linux/version.hpp"
#define xstr(a) str(a)
#define str(a, b, c, d) #a"."#b"."#c"."#d
std::string getVersion()
{
return xstr(FILEVERSION);
}