swh:1:snp:6088ab52ef49920e01e3f334cdf4d5d6c8a822b9
Raw File
Tip revision: cab8c37bc0ca98a85df9fcd4ff8952e299b69855 authored by Lars Bilke on 19 July 2021, 09:52:34 UTC
[web] Added hints on local tfel installation.
Tip revision: cab8c37
GitInfo.h
/**
 * \brief  Git information.
 *
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include <string>

#include "gitinfolib_export.h"

namespace GitInfoLib
{

namespace GitInfo
{
    extern GITINFOLIB_EXPORT std::string const OGS_VERSION;
    extern GITINFOLIB_EXPORT const std::string git_version_sha1_short;
    extern GITINFOLIB_EXPORT const std::string ogs_version;
}  // namespace
}  // namespace
back to top