Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
convert the last vm simcall into s4u code
[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
11 /** Define the version numbers of the used header files. See sg_version() to retrieve the version of the dynamic library. */
12 #define SIMGRID_VERSION_MAJOR @SIMGRID_VERSION_MAJOR@
13 #define SIMGRID_VERSION_MINOR @SIMGRID_VERSION_MINOR@
14 #define SIMGRID_VERSION_PATCH @SIMGRID_VERSION_PATCH@
15
16 /* Version as a single integer. v3.4 is 30400, v3.16.2 is 31602, v42 will be 420000, and so on. */
17 #define SIMGRID_VERSION (100UL * (100UL * (@SIMGRID_VERSION_MAJOR@) + (@SIMGRID_VERSION_MINOR@)) + (@SIMGRID_VERSION_PATCH@))
18
19 #define SIMGRID_VERSION_STRING "@SIMGRID_VERSION_STRING@"
20
21 /* Was Jedule compiled in?  */
22 #cmakedefine01 HAVE_JEDULE
23 /* Was the Lua support compiled in? */
24 #cmakedefine01 HAVE_LUA
25 /* Were mallocators (object pools) compiled in? */
26 #cmakedefine01 HAVE_MALLOCATOR
27 /* Was the model-checking compiled in? */
28 #cmakedefine01 HAVE_MC
29 /* Was the NS3 support compiled in? */
30 #cmakedefine01 HAVE_NS3
31
32 #endif /* SIMGRID_PUBLIC_CONFIG_H */