martinruenz / maskfusion

MaskFusion: Real-Time Recognition, Tracking and Reconstruction of Multiple Moving Objects
http://visual.cs.ucl.ac.uk/pubs/maskfusion/index.html
Other
569 stars 146 forks source link

Set toml11 version #19

Closed margaritaG closed 5 years ago

margaritaG commented 5 years ago

The latest version of the toml11 library is 3.0.0, but it seems that MaskFusion code relies on an older version of toml11. Specifically, v3 introduced some breaking changes compared to v2 which lead to some compilation errors when building MaskFusion, namely in file GUI/MainController.cpp (https://github.com/martinruenz/maskfusion/issues/16)

This fix solves the compilation errors by selecting the latest version of toml11 compatible with MaskFusion to clone.

martinruenz commented 5 years ago

Thanks!