summaryrefslogtreecommitdiff
path: root/prism/version.h
blob: c96fe6882f16a7511ec0794c7d53d4e3cc11dc34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
 * @file version.h
 *
 * The version of the Prism library.
 */
#ifndef PRISM_VERSION_H
#define PRISM_VERSION_H

/**
 * The major version of the Prism library as an int.
 */
#define PRISM_VERSION_MAJOR 0

/**
 * The minor version of the Prism library as an int.
 */
#define PRISM_VERSION_MINOR 25

/**
 * The patch version of the Prism library as an int.
 */
#define PRISM_VERSION_PATCH 0

/**
 * The version of the Prism library as a constant string.
 */
#define PRISM_VERSION "0.25.0"

#endif