MIT-SPARK / Kimera-RPGO

Robust Pose Graph Optimization
BSD 2-Clause "Simplified" License
474 stars 133 forks source link

Fix compilation on MacOS #35

Closed ToniRV closed 5 years ago

ToniRV commented 5 years ago

I was having two compilation errors in Mac:

ToniRV commented 5 years ago

@yunzc I forgot to remove the find_package(TBB ...) and all tbb related things :/ The issue was solved with the line:

IF(APPLE)
    # Fix linking on 10.14+. See https://stackoverflow.com/questions/54068035
    LINK_DIRECTORIES(/usr/local/lib)
ENDIF()