32 lines
720 B
C
32 lines
720 B
C
/* -*- 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-or-later
|
|
*/
|
|
|
|
#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
|