diff options
Diffstat (limited to '')
-rw-r--r-- | lib/gs-build-ident.h.in | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/gs-build-ident.h.in b/lib/gs-build-ident.h.in new file mode 100644 index 0000000..92cd79a --- /dev/null +++ b/lib/gs-build-ident.h.in @@ -0,0 +1,32 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- + * vi:set noexpandtab tabstop=8 shiftwidth=8: + * + * Copyright (C) 2021 Matthew Leeds <mwleeds@endlessos.org> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#pragma once + +#include <glib.h> + +G_BEGIN_DECLS + +/** + * SECTION:gs-build-ident + * @title: Build Identifier + * @short_description: Identify a build by unique build identifier + * + * Since: 40 + */ + +/** + * GS_BUILD_IDENTIFIER: + * + * A string containing a tag that defines the version of Software that + * was built. Generally, this will be a small version tag plus some + * information to identify the git commit hash when applicable. + */ +#define GS_BUILD_IDENTIFIER "@VCS_TAG@" + +G_END_DECLS |