pcl源码编译 : 错误libboost_thread-vc100-mt-gd-1_51.lib(thread.obj)

来源:互联网 发布:股票分析算法方法 编辑:程序博客网 时间:2024/06/03 21:01

将源码中 cmake/pcl_find_boost.cmake

# Required boost modules
find_package(Boost 1.40.0 REQUIRED COMPONENTS system filesystem thread date_time iostreams)

改为

# Required boost modules
find_package(Boost 1.40.0 REQUIRED COMPONENTS system filesystem thread date_time iostreams chrono)

亲测可行 


参考 http://blog.csdn.net/lming_08/article/details/19114417

0 0