make ignore list consistent across Python and Matlab
parent
1618218cff
commit
4af355b0eb
|
@ -58,7 +58,24 @@ if(NOT BUILD_SHARED_LIBS)
|
||||||
list(APPEND mexFlags -DGTSAM_IMPORT_STATIC)
|
list(APPEND mexFlags -DGTSAM_IMPORT_STATIC)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
set(ignore gtsam::Point2 gtsam::Point3)
|
# ignoring the non-concrete types (type aliases)
|
||||||
|
set(ignore
|
||||||
|
gtsam::Point2
|
||||||
|
gtsam::Point3
|
||||||
|
gtsam::LieVector
|
||||||
|
gtsam::LieMatrix
|
||||||
|
gtsam::ISAM2ThresholdMapValue
|
||||||
|
gtsam::FactorIndices
|
||||||
|
gtsam::FactorIndexSet
|
||||||
|
gtsam::IndexPairSetMap
|
||||||
|
gtsam::IndexPairVector
|
||||||
|
gtsam::BetweenFactorPose2s
|
||||||
|
gtsam::BetweenFactorPose3s
|
||||||
|
gtsam::Point2Vector
|
||||||
|
gtsam::Pose3Vector
|
||||||
|
gtsam::KeyVector
|
||||||
|
gtsam::BinaryMeasurementsUnit3
|
||||||
|
gtsam::KeyPairDoubleMap)
|
||||||
|
|
||||||
# Wrap
|
# Wrap
|
||||||
matlab_wrap(${GTSAM_SOURCE_DIR}/gtsam/gtsam.i "${GTSAM_ADDITIONAL_LIBRARIES}"
|
matlab_wrap(${GTSAM_SOURCE_DIR}/gtsam/gtsam.i "${GTSAM_ADDITIONAL_LIBRARIES}"
|
||||||
|
|
Loading…
Reference in New Issue