diff options
| author | rimio <vasi.vilvoiu@gmail.com> | 2018-03-04 23:15:23 +0200 |
|---|---|---|
| committer | rimio <vasi.vilvoiu@gmail.com> | 2018-03-04 23:15:23 +0200 |
| commit | f8b56be188fa5ea9706f91ec7ca513740850af02 (patch) | |
| tree | 7096470b3c4275707133136643904214b3ce7286 /include | |
| parent | 00d1b9ef4ac0ab4b22b5630fcfb85d0fdd1d8566 (diff) | |
Added versioning
Diffstat (limited to 'include')
| -rw-r--r-- | include/.gitignore | 1 | ||||
| -rw-r--r-- | include/ecbor.h.in (renamed from include/ecbor.h) | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/include/.gitignore b/include/.gitignore new file mode 100644 index 0000000..768880b --- /dev/null +++ b/include/.gitignore @@ -0,0 +1 @@ +ecbor.h diff --git a/include/ecbor.h b/include/ecbor.h.in index 62ae4b5..0379b93 100644 --- a/include/ecbor.h +++ b/include/ecbor.h.in @@ -12,6 +12,15 @@ #include <stddef.h> /* + * Version + */ +#define ECBOR_VERSION_MAJOR @VERSION_MAJOR@ +#define ECBOR_VERSION_MINOR @VERSION_MINOR@ +#define ECBOR_VERSION_PATCH @VERSION_PATCH@ + +#define ECBOR_VERSION "@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@" + +/* * Error codes */ typedef enum { |
