mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-27 18:04:58 +00:00
15 lines
401 B
C
15 lines
401 B
C
/*
|
|
* SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
|
|
* SPDX-FileCopyrightText: Eli Schwartz <eschwartz@archlinux.org>
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
*/
|
|
|
|
#ifndef MUON_VERSION_H
|
|
#define MUON_VERSION_H
|
|
struct muon_version {
|
|
const char *const version, *const vcs_tag, *const meson_compat, *const compiler, *const platform;
|
|
};
|
|
extern const struct muon_version muon_version;
|
|
|
|
#endif
|