aboutsummaryrefslogtreecommitdiff
path: root/version.cc.in
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2018-08-23 18:05:11 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2018-08-23 18:05:11 +0200
commitdee6ebe5d0a9ea5d555852011d219a66d8746b0e (patch)
tree28fbfde73768edbf3bcd43b843e61360fd36df63 /version.cc.in
parentef171dfd5bf23da606597a251c327ad2c52ec7b8 (diff)
downloadlibnitrokey-dee6ebe5d0a9ea5d555852011d219a66d8746b0e.tar.gz
libnitrokey-dee6ebe5d0a9ea5d555852011d219a66d8746b0e.tar.bz2
Fix potential names clash with client projectsnames_clash
Nitrokey App was failing to build due to name clash with version.h file. Renamed. Tested CMake, QMake and Meson build. Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
Diffstat (limited to 'version.cc.in')
-rw-r--r--version.cc.in37
1 files changed, 0 insertions, 37 deletions
diff --git a/version.cc.in b/version.cc.in
deleted file mode 100644
index 0eae647..0000000
--- a/version.cc.in
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * 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@";
- }
-}
-