X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fglobals.h;h=10fffb1e0ab93e92dcf69092452182a799db1c97;hb=3fc3493387b534f9e0c536de985ac0af3413ae7a;hp=1a7c36941ce47450c498833811285942d7975779;hpb=896eed97e1d0ae195b9130de5bd056a1b5b08621;p=tools%2Finstall.git diff --git a/src/globals.h b/src/globals.h index 1a7c369..10fffb1 100644 --- a/src/globals.h +++ b/src/globals.h @@ -15,6 +15,14 @@ #include #include +#define __IW_VERSION_MAJOR__ 1 +#define __IW_VERSION_MINOR__ 0 +#define __IW_VERSION_PATCH__ 1 + +#define __IW_VERSION__ (__IW_VERSION_MAJOR__*10000 + \ + __IW_VERSION_MINOR__*100 + \ + __IW_VERSION_PATCH__) + #ifdef QT_DEBUG #define ___MESSAGE___( x ) std::cout << x << std::endl;