mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-25 02:10:36 -06:00
d8a304c2c9
This starts by setting the gnucash version number in the 'project' call. This will result in a number of variables set by cmake. The remainder of this commit is to reuse the auto-generated PROJECT_NAME, PROJECT_VERSION, PROJECT_VERSION_MAJOR PROJECT_VERSION_MINOR, PROJECT_VERSION_PATCH and PROJECT_VERSION_TWEAK instead of all the various instances of PACKAGE, GNUCASH_MAJOR_VERSION and so on. One parameter is worth mentioning - GETTEXT_PACKAGE GnuCash is not using this directly (any more) but it has to be set before including gi18n-lib.h.
69 lines
2.5 KiB
C
69 lines
2.5 KiB
C
/********************************************************************\
|
|
* gnc-version.cpp -- functions to query the build-time version info *
|
|
* *
|
|
* Copyright (C) 2019 Geert Janssens <geert@kobaltwit.be> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU General Public License as *
|
|
* published by the Free Software Foundation; either version 2 of *
|
|
* the License, or (at your option) any later version. *
|
|
* *
|
|
* This program 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 General Public License*
|
|
* along with this program; if not, contact: *
|
|
* *
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
|
* *
|
|
********************************************************************/
|
|
|
|
#include "gnc-version.h"
|
|
#include <config.h>
|
|
|
|
#ifdef GNC_VCS
|
|
#define vcs GNC_VCS " "
|
|
#else
|
|
#define vcs ""
|
|
#endif
|
|
#define dflt_build_id vcs GNC_VCS_REV "(" GNC_VCS_REV_DATE ")"
|
|
|
|
const char *gnc_version(void)
|
|
{
|
|
return PROJECT_VERSION;
|
|
}
|
|
|
|
const char *gnc_build_id(void)
|
|
{
|
|
/* GNUCASH_BUILD_ID can be set by the builder prior to compiling to anything
|
|
* the builder sees fit (eg distributions may want to print a package source
|
|
* version number (rpm, dpkg,...)
|
|
* If not set by a builder it will be set by default to our
|
|
* git revision ("git706a3b (<commit-date>)"
|
|
*/
|
|
if (GNUCASH_BUILD_ID[0] != '\0')
|
|
return GNUCASH_BUILD_ID;
|
|
else
|
|
return dflt_build_id;
|
|
|
|
}
|
|
|
|
const char *gnc_vcs_rev(void)
|
|
{
|
|
return GNC_VCS_REV;
|
|
}
|
|
|
|
const char *gnc_vcs_rev_date(void)
|
|
{
|
|
return GNC_VCS_REV_DATE;
|
|
}
|
|
|
|
const int gnc_gnucash_major_version(void)
|
|
{
|
|
return PROJECT_VERSION_MAJOR;
|
|
}
|