Salome HOME
Fix the command running the tests
[plugins/gmshplugin.git] / GMSHPLUGIN_version.h.in
1 // Copyright (C) 2012-2015  ALNEOS
2 // Copyright (C) 2016  EDF R&D
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
8 //
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.alneos.com/ or email : contact@alneos.fr
19 //
20
21 #if !defined(__GMSHPLUGIN_VERSION_H__)
22 #define __GMSHPLUGIN_VERSION_H__
23
24 /*!
25   Specify version of SALOME GMSHPLUGIN module, as follows
26
27   GMSHPLUGIN_VERSION_MAJOR       : (integer) number identifying major version
28   GMSHPLUGIN_VERSION_MINOR       : (integer) number identifying minor version
29   GMSHPLUGIN_VERSION_MAINTENANCE : (integer) number identifying maintenance version
30   GMSHPLUGIN_VERSION_STR         : (string)  complete version number "major.minor.maintenance"
31   GMSHPLUGIN_VERSION             : (hex)     complete version number (major << 16) + (minor << 8) + maintenance
32   GMSHPLUGIN_DEVELOPMENT         : (integer) indicates development version when set to 1
33 */
34
35 #define GMSHPLUGIN_VERSION_MAJOR       @SALOMEGMSHPLUGIN_MAJOR_VERSION@
36 #define GMSHPLUGIN_VERSION_MINOR       @SALOMEGMSHPLUGIN_MINOR_VERSION@
37 #define GMSHPLUGIN_VERSION_MAINTENANCE @SALOMEGMSHPLUGIN_PATCH_VERSION@
38 #define GMSHPLUGIN_VERSION_STR         "@SALOMEGMSHPLUGIN_VERSION@"
39 #define GMSHPLUGIN_VERSION             @SALOMEGMSHPLUGIN_XVERSION@
40 #define GMSHPLUGIN_DEVELOPMENT         @SALOMEGMSHPLUGIN_VERSION_DEV@
41
42 #endif // __GMSHPLUGIN_VERSION_H__