/* gweather-version.h - libgweather versioning information * * This file is part of libgweather * Copyright (C) 2014 Javier Jardón * * This library 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 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see . * * Based on json-version from json-glib * Authored by Emmanuele Bassi * Adapted for libgweather by Javier Jardón */ #ifndef __GWEATHER_VERSION_H__ #define __GWEATHER_VERSION_H__ #if !(defined(IN_GWEATHER_H) || defined(GWEATHER_COMPILATION)) #error "gweather-version.h must not be included individually, include gweather.h instead" #endif /** * SECTION:gweatherversion * @short_description: libgweather version checking * * LibGweather provides macros to check the version of the library * at compile-time */ /** * GWEATHER_MAJOR_VERSION: * * LibGweather major version component (e.g. 1 if %GWEATHER_VERSION is 1.2.3) * * Since: 3.12 */ #mesondefine GWEATHER_MAJOR_VERSION /** * GWEATHER_MINOR_VERSION: * * LibGweather minor version component (e.g. 2 if %GWEATHER_VERSION is 1.2.3) * * Since: 3.12 */ #mesondefine GWEATHER_MINOR_VERSION /** * GWEATHER_MICRO_VERSION: * * LibGweather micro version component (e.g. 3 if %GWEATHER_VERSION is 1.2.3) * * Since version 40 of the library, always 0. * * Since: 3.12 */ #mesondefine GWEATHER_MICRO_VERSION /** * GWEATHER_VERSION * * LibGweather version. * * Since: 3.12 */ #mesondefine GWEATHER_VERSION /** * GWEATHER_VERSION_HEX: * * LibGweather version, encoded as an hexadecimal number, useful for * integer comparisons. * * Since: 3.12 */ #define GWEATHER_VERSION_HEX (GWEATHER_MAJOR_VERSION << 24 | \ GWEATHER_MINOR_VERSION << 16 | \ GWEATHER_MICRO_VERSION << 8) /** * GWEATHER_CHECK_VERSION: * @major: required major version * @minor: required minor version * @micro: required micro version * * Compile-time version checking. Evaluates to %TRUE if the version * of LibGweather is greater than the required one. * * Since: 3.12 */ #define GWEATHER_CHECK_VERSION(major,minor,micro) \ (GWEATHER_MAJOR_VERSION > (major) || \ (GWEATHER_MAJOR_VERSION == (major) && GWEATHER_MINOR_VERSION > (minor)) || \ (GWEATHER_MAJOR_VERSION == (major) && GWEATHER_MINOR_VERSION == (minor) && \ GWEATHER_MICRO_VERSION >= (micro))) #endif /* __GWEATHER_VERSION_H__ */