mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
b368ecd5aa
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
19 lines
334 B
C
19 lines
334 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include "ssrf-version.h"
|
|
|
|
const char *subsurface_git_version(void)
|
|
{
|
|
return GIT_VERSION_STRING;
|
|
}
|
|
|
|
const char *subsurface_canonical_version(void)
|
|
{
|
|
return CANONICAL_VERSION_STRING;
|
|
}
|
|
|
|
#ifdef SUBSURFACE_MOBILE
|
|
const char *subsurface_mobile_version(void)
|
|
{
|
|
return MOBILE_VERSION_STRING;
|
|
}
|
|
#endif
|