Install fmt
:
sudo apt install libfmt-dev
git clone https://github.com/strasdat/Sophus.git
mkdir build
cd build/
cmake ..
make -j8
sudo make install
cmake_minimum_required(VERSION 3.0)
project(MY_GRAND_PROJECT)
find_package(Sophus REQUIRED)
#find_package(fmt REQUIRED)
find_package(Pangolin REQUIRED)
add_executable(<NAME> <NAME>.cpp)
target_link_libraries(<NAME> Sophus::Sophus ${Pangolin_LIBRARIES} fmt::fmt)
# when used with pangolin: pangolin should be linked before fmt::fmt
# target_link_libraries(<NAME> Sophus::Sophus ${Pangolin_LIBRARIES} fmt::fmt)
#include <pangolin/pangolin.h>
// sophus needs fmt, and there are variables named fmt in pangolin,
// so sophus should be included after pangolin
#include <sophus/se3.hpp>