Revision 73cf97cdbd8ffcb982e7306c2e5417babfe25653 authored by Dmitri Naumov on 06 July 2021, 10:49:42 UTC, committed by Dmitri Naumov on 06 July 2021, 21:16:01 UTC
Reduces output size from 870MiB to 540MiB,
and doxygen's runtime (user + system in seconds)
from 680+134 to 340+128.
1 parent 2bf700d
Raw File
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