1 Star 0 Fork 0

AlvinEAI / g2o

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.h.in 1009 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef G2O_CONFIG_H
#define G2O_CONFIG_H
#cmakedefine G2O_HAVE_OPENGL 1
#cmakedefine G2O_OPENGL_FOUND 1
#cmakedefine G2O_OPENMP 1
#cmakedefine G2O_SHARED_LIBS 1
#cmakedefine G2O_LGPL_SHARED_LIBS 1
// available sparse matrix libraries
#cmakedefine G2O_HAVE_CHOLMOD 1
#cmakedefine G2O_HAVE_CSPARSE 1
#cmakedefine G2O_NO_IMPLICIT_OWNERSHIP_OF_OBJECTS
#ifdef G2O_NO_IMPLICIT_OWNERSHIP_OF_OBJECTS
#define G2O_DELETE_IMPLICITLY_OWNED_OBJECTS 0
#else
#define G2O_DELETE_IMPLICITLY_OWNED_OBJECTS 1
#endif
#cmakedefine G2O_SINGLE_PRECISION_MATH
#ifdef G2O_SINGLE_PRECISION_MATH
#define G2O_NUMBER_FORMAT_STR "%g"
#ifdef __cplusplus
using number_t = float;
#else
typedef float number_t;
#endif
#else
#define G2O_NUMBER_FORMAT_STR "%lg"
#ifdef __cplusplus
using number_t = double;
#else
typedef double number_t;
#endif
#endif
#cmakedefine G2O_CXX_COMPILER "@G2O_CXX_COMPILER@"
#ifdef __cplusplus
#include <g2o/core/eigen_types.h>
#endif
#endif
C++
1
https://gitee.com/wohaha5588/g2o.git
git@gitee.com:wohaha5588/g2o.git
wohaha5588
g2o
g2o
master

搜索帮助