muon/include/version.h
Eli Schwartz dcc2b0470c
implement meson.version()
Track the version in the muon_version struct as a separate value from
the application version. Defer actually declaring a compatibility level
for now.
2021-09-05 07:20:33 -05:00

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