https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 4c3cfd195e30b63ea4891ce30624791881a54d7e authored by Tom Fischer on 15 June 2015, 10:28:54 UTC
Merge pull request #701 from bilke/changelog
Tip revision: 4c3cfd1
BuildInfo.h
/**
 * \brief  Build information.
 *
 * \copyright
 * Copyright (c) 2012-2015, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#ifndef BASE_LIB_BUILD_INFO_H_
#define BASE_LIB_BUILD_INFO_H_

#include <string>

namespace BaseLib
{

namespace BuildInfo
{
    extern const std::string build_timestamp;

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

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

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

    extern const std::string source_path;
    extern const std::string tests_tmp_path;
}
}

#endif  // BASE_LIB_BUILD_INFO_H_
back to top