最近在编译D-MAP的时候遇到下面的问题
在github issue好像也有类似的提问
compiling error with fmt · Issue #4 · hku-mars/D-Map · GitHub
这应该是fmt配置没有连接上。为此寻找所有包含的fmt文件,在头文件处加入
#define FMT_HEADER_ONLY
#include "fmt/format.h"
即可编译成功
参考资料
c++ - How to use fmt library in the header-only mode? - Stack Overflow