Permalink
Please sign in to comment.
Showing
with
21 additions
and 0 deletions.
- +9 −0 CMakeLists.txt
- +12 −0 version/version.h.in
| @@ -0,0 +1,12 @@ | ||
| +#pragma once | ||
| + | ||
| +#ifdef __cplusplus | ||
| +extern "C" { | ||
| +#endif | ||
| + | ||
| +const static char* __g_prog_version = "@FULL_VERSION@"; | ||
| +const static char* __g_commit_hash = "@COMMIT_HASH@"; | ||
| + | ||
| +#ifdef __cplusplus | ||
| +} | ||
| +#endif |
0 comments on commit
b016644