You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently discovered that Eigen3 provides an Eigen3Config.cmake file. We should consider using this instead of having our own find-module for Eigen.
But one thing to watch out for is it seems that the imported target that gets mentioned in the documentation is not available in Eigen version 3.2.92 (the documentation is for 3.3.4), so we might want to avoid using the imported target in order to keep supporting older setups.
The text was updated successfully, but these errors were encountered:
One caveat would be that Eigen3Config.cmake is not provided for some Eigen versions that DART supports (>= 3.2.0). We could work around this by using config mode first and then module mode if it fails to find Eigen.
I recently discovered that Eigen3 provides an Eigen3Config.cmake file. We should consider using this instead of having our own find-module for Eigen.
But one thing to watch out for is it seems that the imported target that gets mentioned in the documentation is not available in Eigen version
3.2.92
(the documentation is for3.3.4
), so we might want to avoid using the imported target in order to keep supporting older setups.The text was updated successfully, but these errors were encountered: