https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 9b2d0280672d27ec5f11020de1a0f989c101b07a authored by Dmitry Yu. Naumov on 11 December 2017, 20:57:27 UTC
Merge pull request #2019 from wenqing/fixing
Tip revision: 9b2d028
BuildInfo.h
/**
 * \brief  Build information.
 *
 * \copyright
 * Copyright (c) 2012-2017, 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 "baselib_export.h"

namespace BaseLib
{

namespace BuildInfo
{
    extern BASELIB_EXPORT const std::string build_timestamp;

    extern BASELIB_EXPORT const std::string cmake_cxx_compiler;
    extern BASELIB_EXPORT const std::string cmake_cxx_flags;
    extern BASELIB_EXPORT const std::string cmake_cxx_flags_release;
    extern BASELIB_EXPORT const std::string cmake_cxx_flags_debug;

    extern BASELIB_EXPORT const std::string git_version_sha1;
    extern BASELIB_EXPORT const std::string git_version_sha1_short;

    extern BASELIB_EXPORT const std::string git_describe;
    extern BASELIB_EXPORT const std::string ogs_version;

    extern BASELIB_EXPORT const std::string source_path;
    extern BASELIB_EXPORT const std::string geo_xml_schema_path;
    extern BASELIB_EXPORT const std::string app_xml_schema_path;
    extern BASELIB_EXPORT const std::string data_path;
    extern BASELIB_EXPORT const std::string data_binary_path;
    extern BASELIB_EXPORT const std::string tests_tmp_path;
}
}
back to top