1#ifndef VERSION_CONFIG_H
2#define VERSION_CONFIG_H
3
4/* define the API version (integer) */
5#define TNG_API_VERSION @TNG_API_VERSION@
6
7/* define the major and minor versions
8   of the library */
9#define TNG_VERSION_MAJOR @TNG_MAJOR_VERSION@
10#define TNG_VERSION_MINOR @TNG_MINOR_VERSION@
11/* define the patchlevel of the library */
12#define TNG_VERSION_PATCHLEVEL @TNG_VERSION_PATCH_LEVEL@
13/* define the full version of the library (string) */
14#define TNG_VERSION "@TNG_IO_VERSION@"
15
16#endif
17