Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / include / simgrid / version.h.in
1 /* src/simgrid/version.h - internal versioning info                        */
2
3 /* Copyright (c) 2009-2022. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef SIMGRID_VERSION_H
9 #define SIMGRID_VERSION_H
10
11 #define SIMGRID_GIT_VERSION   "@GIT_VERSION@"
12
13 /** Define the version numbers of the used header files.
14   See sg_version_get() to retrieve the version of the dynamic library. */
15 #define SIMGRID_VERSION_MAJOR @SIMGRID_VERSION_MAJOR@
16 #define SIMGRID_VERSION_MINOR @SIMGRID_VERSION_MINOR@
17 #define SIMGRID_VERSION_PATCH @SIMGRID_VERSION_PATCH@
18 #define SIMGRID_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@"
19
20 SG_BEGIN_DECL
21 /** Retrieves the version numbers of the used dynamic library (so, DLL or dynlib), while
22     SIMGRID_VERSION_MAJOR and friends give the version numbers of the used header files */
23 XBT_PUBLIC void sg_version_get(int* major, int* minor, int* patch);
24
25 /** Display the version information and some additional blurb. */
26 XBT_PUBLIC void sg_version();
27 SG_END_DECL
28
29
30 /* Version as a single integer. v3.4 is 30400, v3.16.2 is 31602, v42 will be 420000, and so on. */
31 #define SIMGRID_VERSION (100UL * (100UL * (SIMGRID_VERSION_MAJOR) + (SIMGRID_VERSION_MINOR)) + (SIMGRID_VERSION_PATCH))
32
33 #define SIMGRID_VERSION_STRING "@SIMGRID_VERSION_STRING@"
34
35 #endif /* SIMGRID_VERSION_H */