config.h.in 384 B

12345678910111213
  1. #ifndef G2O_CONFIG_H
  2. #define G2O_CONFIG_H
  3. #cmakedefine G2O_OPENMP 1
  4. #cmakedefine G2O_SHARED_LIBS 1
  5. // give a warning if Eigen defaults to row-major matrices.
  6. // We internally assume column-major matrices throughout the code.
  7. #ifdef EIGEN_DEFAULT_TO_ROW_MAJOR
  8. # error "g2o requires column major Eigen matrices (see http://eigen.tuxfamily.org/bz/show_bug.cgi?id=422)"
  9. #endif
  10. #endif