diff options
Diffstat (limited to 'src/inkscape-version.cpp.in')
-rw-r--r-- | src/inkscape-version.cpp.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/inkscape-version.cpp.in b/src/inkscape-version.cpp.in new file mode 100644 index 0000000..d350971 --- /dev/null +++ b/src/inkscape-version.cpp.in @@ -0,0 +1,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@; +} |