blob: d350971d9d9e03f0d0a04ed0096d3f0b14c86a35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// SPDX-License-Identifier: GPL-2.0-or-later
#include "inkscape-version.h"
namespace Inkscape {
char const *revision_string = "${INKSCAPE_REVISION_HASH}";
char const *version_string = "@INKSCAPE_VERSION@" " " "(${INKSCAPE_REVISION})";
char const *version_string_without_revision = "@INKSCAPE_VERSION@";
unsigned short int const build_year = ${INKSCAPE_BUILD_YEAR};
unsigned int const version_major = @INKSCAPE_VERSION_MAJOR@;
unsigned int const version_minor = @INKSCAPE_VERSION_MINOR@;
unsigned int const version_patch = @INKSCAPE_VERSION_PATCH@;
}
|