Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more propaganda
[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
18 SG_BEGIN_DECL()
19 /** Retrieves the version numbers of the used dynamic library (so, DLL or dynlib), while
20     SIMGRID_VERSION_MAJOR and friends give the version numbers of the used header files */
21 XBT_PUBLIC(void) sg_version_get(int *major,int *minor,int *patch);
22
23 /** Display the version information and some additional blurb. */
24 XBT_PUBLIC(void) sg_version(void);
25 SG_END_DECL()
26
27
28 /* Version as a single integer. v3.4 is 30400, v3.16.2 is 31602, v42 will be 420000, and so on. */
29 #define SIMGRID_VERSION (100UL * (100UL * (@SIMGRID_VERSION_MAJOR@) + (@SIMGRID_VERSION_MINOR@)) + (@SIMGRID_VERSION_PATCH@))
30
31 #define SIMGRID_VERSION_STRING "@SIMGRID_VERSION_STRING@"
32
33 /* Was Jedule compiled in?  */
34 #cmakedefine01 HAVE_JEDULE
35 /* Was the Lua support compiled in? */
36 #cmakedefine01 HAVE_LUA
37 /* Were mallocators (object pools) compiled in? */
38 #cmakedefine01 HAVE_MALLOCATOR
39 /* Was the model-checking compiled in? */
40 #cmakedefine01 HAVE_MC
41 /* Was the NS3 support compiled in? */
42 #cmakedefine01 HAVE_NS3
43
44 #endif /* SIMGRID_PUBLIC_CONFIG_H */