Warning, /office/alkimia/src/alkversion.h.in is written in an unsupported language. File is not indexed.
0001 /* 0002 SPDX-FileCopyrightText: 2021 Ralf Habacker ralf.habacker @freenet.de 0003 0004 This file is part of libalkimia. 0005 0006 SPDX-License-Identifier: GPL-2.0-or-later 0007 */ 0008 0009 #ifndef ALK_VERSION_H 0010 #define ALK_VERSION_H 0011 0012 #define ALK_VERSION_STRING "@PROJECT_VERSION@" 0013 #define ALK_VERSION_MAJOR @PROJECT_VERSION_MAJOR@ 0014 #define ALK_VERSION_MINOR @PROJECT_VERSION_MINOR@ 0015 #define ALK_VERSION_PATCH @PROJECT_VERSION_PATCH@ 0016 #define ALK_VERSION ALK_VERSION_CHECK(@PROJECT_VERSION_MAJOR@, @PROJECT_VERSION_MINOR@, @PROJECT_VERSION_PATCH@) 0017 /* 0018 can be used like #if (ALK_VERSION >= ALK_VERSION_CHECK(8, 1, 0)) 0019 */ 0020 #define ALK_VERSION_CHECK(major, minor, patch) ((major<<16)|(minor<<8)|(patch)) 0021 0022 #endif