Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
doxygen fixups
[simgrid.git] / include / simgrid_config.h.in
1 /* simgrid_config.h - Results of the configure made visible to user code.   */
2
3 /* Copyright (c) 2009-2016. 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_PUBLIC_CONFIG_H
9 #define SIMGRID_PUBLIC_CONFIG_H
10 #include <xbt/base.h>
11
12 /** Define the version numbers of the used header files. 
13   See sg_version_get() to retrieve the version of the dynamic library. */
14 #define SIMGRID_VERSION_MAJOR @SIMGRID_VERSION_MAJOR@
15 #define SIMGRID_VERSION_MINOR @SIMGRID_VERSION_MINOR@
16 #define SIMGRID_VERSION_PATCH @SIMGRID_VERSION_PATCH@
17 #define SIMGRID_GIT_VERSION   "@GIT_VERSION@"
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 /* Was Jedule compiled in?  */
36 #cmakedefine01 HAVE_JEDULE
37 /* Was the Lua support compiled in? */
38 #cmakedefine01 HAVE_LUA
39 /* Were mallocators (object pools) compiled in? */
40 #cmakedefine01 HAVE_MALLOCATOR
41 /* Was the model-checking compiled in? */
42 #cmakedefine01 HAVE_MC
43 /* Was the NS3 support compiled in? */
44 #cmakedefine01 HAVE_NS3
45
46 #endif /* SIMGRID_PUBLIC_CONFIG_H */