Blame lang/cpp/src/gpgmepp_version.h.in

Packit d7e8d0
/*gpgmepp_version.h - Version macros for gpgmepp
Packit d7e8d0
  Copyright (C) 2016, Intevation GmbH
Packit d7e8d0
Packit d7e8d0
  This file is part of GPGME++.
Packit d7e8d0
Packit d7e8d0
  GPGME++ is free software; you can redistribute it and/or
Packit d7e8d0
  modify it under the terms of the GNU Library General Public
Packit d7e8d0
  License as published by the Free Software Foundation; either
Packit d7e8d0
  version 2 of the License, or (at your option) any later version.
Packit d7e8d0
Packit d7e8d0
  GPGME++ is distributed in the hope that it will be useful,
Packit d7e8d0
  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit d7e8d0
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit d7e8d0
  GNU Library General Public License for more details.
Packit d7e8d0
Packit d7e8d0
  You should have received a copy of the GNU Library General Public License
Packit d7e8d0
  along with GPGME++; see the file COPYING.LIB.  If not, write to the
Packit d7e8d0
  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Packit d7e8d0
  Boston, MA 02110-1301, USA.
Packit d7e8d0
*/
Packit d7e8d0
Packit d7e8d0
Packit d7e8d0
#ifndef GPGMEPP_VERSION_H
Packit d7e8d0
#define GPGMEPP_VERSION_H
Packit d7e8d0
Packit d7e8d0
#define GPGMEPP_VERSION_STRING "@VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_MICRO@"
Packit d7e8d0
#define GPGMEPP_VERSION_MAJOR @VERSION_MAJOR@
Packit d7e8d0
#define GPGMEPP_VERSION_MINOR @VERSION_MINOR@
Packit d7e8d0
#define GPGMEPP_VERSION_PATCH @VERSION_MICRO@
Packit d7e8d0
#define GPGMEPP_VERSION ((@VERSION_MAJOR@<<16)|(@VERSION_MINOR@<<8)|(@VERSION_MICRO@))
Packit d7e8d0
#endif