mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-31 03:45:53 +00:00
Track the version in the muon_version struct as a separate value from the application version. Defer actually declaring a compatibility level for now.
9 lines
191 B
C
9 lines
191 B
C
#ifndef MUON_VERSION_H
|
|
#define MUON_VERSION_H
|
|
struct muon_version {
|
|
const char *const version, *const vcs_tag, *const meson_compat;
|
|
};
|
|
extern const struct muon_version muon_version;
|
|
|
|
#endif
|