1,正常编译SmartWin.sln 文件,生成" .ib "
2,codeblock 新建 SmartWin 项目 , 分别设置 include lib 路径.
3, 此时编译报错" main.obj||error LNK2019: 无法解析的外部符号 "void __cdecl boost::throw_exception(class std::exception const &)" (?throw_exception@boost@@YAXABVexception@std@@@Z),该符号在函数 "public: long __thiscall boost::function1<long,class SmartWin::private_::SignalContent,class std::allocator<void> >::operator()(class SmartWin::private_::SignalContent)const " (??R?$function1@JVSignalContent@private_@SmartWin@@V?$allocator@X@std@@@boost@@QBEJVSignalContent@private_@SmartWin@@@Z) 中被引用| "
百度关键词" void __cdecl boost::throw_exception " 参考"https://blog.csdn.net/jinguangliu/article/details/79561890"
解决方式: 项目->构建选项...->编译器设置>其他编译器设置 添加 set(CMAKE_CXX_FLAGS "/EHsc ${CMAKE_CXX_FLAGS}")
项目编译通过.