Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename the class objects and C types for the As -> NetZone transition
[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 #define HAVE_JEDULE     @HAVE_JEDULE@ /* Was Jedule compiled in?  */
22 #define HAVE_LUA        @HAVE_LUA@ /* Was the Lua support compiled in? */
23 #define HAVE_MALLOCATOR @HAVE_MALLOCATOR@ /* Were mallocators (object pools) compiled in? */
24 #define HAVE_MC         @HAVE_MC@ /* Was the model-checking compiled in? */
25 #define HAVE_NS3        @HAVE_NS3@ /* Was the NS3 support compiled in? */
26
27 #endif /* SIMGRID_PUBLIC_CONFIG_H */