diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2018-06-19 14:56:33 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2018-06-19 14:56:33 +0200 |
commit | 35ba2261ddeac3881dc7d4f14b737947a19a4b9b (patch) | |
tree | 0547232f9f4ad035c1be574c772163e148ad4e07 /version.cc.in | |
parent | 6e3ae3175b34679cf1e84fc6dc5b9ebe6a9c0478 (diff) | |
download | libnitrokey-35ba2261ddeac3881dc7d4f14b737947a19a4b9b.tar.gz libnitrokey-35ba2261ddeac3881dc7d4f14b737947a19a4b9b.tar.bz2 |
Move implementation from header back to compilation unit
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'version.cc.in')
-rw-r--r-- | version.cc.in | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/version.cc.in b/version.cc.in new file mode 100644 index 0000000..0eae647 --- /dev/null +++ b/version.cc.in @@ -0,0 +1,37 @@ +/* + * Copyright (c) 2018 Nitrokey UG + * + * This file is part of libnitrokey. + * + * libnitrokey is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * libnitrokey is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with libnitrokey. If not, see <http://www.gnu.org/licenses/>. + * + * SPDX-License-Identifier: LGPL-3.0 + */ + +#include "version.h" + +namespace nitrokey { + unsigned int get_major_library_version() { + return @PROJECT_VERSION_MAJOR@; + } + + unsigned int get_minor_library_version() { + return @PROJECT_VERSION_MINOR@; + } + + const char* get_library_version() { + return "@PROJECT_VERSION_GIT@"; + } +} + |