2018-02-06 16:50:50 +00:00
|
|
|
#include "linux/version.h"
|
2019-04-19 20:42:25 +01:00
|
|
|
#include "../resource/version.h"
|
2018-02-06 16:50:50 +00:00
|
|
|
|
2019-04-19 20:42:25 +01:00
|
|
|
#define xstr2(a) str2(a)
|
|
|
|
#define str2(a, b, c, d) #a"."#b"."#c"."#d
|
2018-02-06 16:50:50 +00:00
|
|
|
|
|
|
|
std::string getVersion()
|
|
|
|
{
|
2019-04-19 20:42:25 +01:00
|
|
|
return xstr2(APPLEWIN_VERSION);
|
2018-02-06 16:50:50 +00:00
|
|
|
}
|