summaryrefslogtreecommitdiffstats
path: root/lasso/version.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'lasso/version.h.in')
-rw-r--r--lasso/version.h.in51
1 files changed, 51 insertions, 0 deletions
diff --git a/lasso/version.h.in b/lasso/version.h.in
new file mode 100644
index 00000000..5a9c97a8
--- /dev/null
+++ b/lasso/version.h.in
@@ -0,0 +1,51 @@
+#ifndef __LASSO_VERSION_H__
+#define __LASSO_VERSION_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+/**
+ * LASSO_VERSION:
+ *
+ * The library version string in the format
+ * "<major-number>.<minor-number>.<sub-minor-number>".
+ */
+#define LASSO_VERSION "@LASSO_VERSION@"
+
+/**
+ * LASSO_VERSION_MAJOR:
+ *
+ * The library major version number.
+ */
+#define LASSO_VERSION_MAJOR @LASSO_VERSION_MAJOR@
+
+/**
+ * LASSO_VERSION_MINOR:
+ *
+ * The library minor version number.
+ */
+#define LASSO_VERSION_MINOR @LASSO_VERSION_MINOR@
+
+/**
+ * LASSO_VERSION_SUBMINOR:
+ *
+ * The library sub-minor version number.
+ */
+#define LASSO_VERSION_SUBMINOR @LASSO_VERSION_SUBMINOR@
+
+/**
+ * LASSO_VERSION_INFO:
+ *
+ * The library version info string in the format
+ * "<major-number>+<minor-number>:<sub-minor-number>:<minor-number>".
+ */
+#define LASSO_VERSION_INFO "@LASSO_VERSION_INFO@"
+
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __LASSO_VERSION_H__ */
+