1/*
2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) INRIA
4 *
5 * Copyright (C) 2012 - 2016 - Scilab Enterprises
6 *
7 * This file is hereby licensed under the terms of the GNU GPL v2.0,
8 * pursuant to article 5.3.4 of the CeCILL v.2.1.
9 * This file was originally licensed under the terms of the CeCILL v2.1,
10 * and continues to be available under such terms.
11 * For more information, see the COPYING file which you should have received
12 * along with this program.
13 *
14 */
15#ifndef SCI_VERSION_H
16#define SCI_VERSION_H
17
18#define SCI_VERSION_MAJOR @SCILAB_VERSION_MAJOR@
19#define SCI_VERSION_MINOR @SCILAB_VERSION_MINOR@
20#define SCI_VERSION_MAINTENANCE @SCILAB_VERSION_MAINTENANCE@
21#define SCI_VERSION_STRING "scilab-branch-6.1"
22#define SCI_VERSION_WIDE_STRING L"scilab-branch-6.1"
23
24/* hash key commit and commit date set to the first Scilab commit and will be updated by the Compilation Chain */
25#define SCI_VERSION_REVISION "0cc09d1c9c20db1f7e531e4317d11a4117ce8cf5"
26#define SCI_VERSION_TIMESTAMP 988271013
27
28void disp_scilab_version(void);
29
30/* for compatibility */
31/* Deprecated */
32#define SCI_VERSION SCI_VERSION_STRING
33#define DEFAULT_SCI_VERSION_MESSAGE L"scilab-branch-6.1"
34
35#endif
36/*--------------------------------------------------------------------------*/
37
38