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