blob: 92cd79a742bd0641c5a4a7865ebf568d078d1514 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
|