编译TestProxy时候遇到链接错误

问题表现:

4>libeventmanager.lib(CommandLoop.obj) : error LNK2019: unresolved external symbol "double __cdecl tn::simple_time::steady_time(void)" (?steady_time@simple_time@tn@@YANXZ) referenced in function "public: bool __thiscall Tn::EventManager::CommandLoop::runNextCommand(void)" (?runNextCommand@CommandLoop@EventManager@Tn@@QAE_NXZ)
4>libeventmanager.lib(CommandLoop.obj) : error LNK2019: unresolved external symbol "bool __cdecl tn::simple_time::wait_for(class boost::condition_variable &,class boost::unique_lock<class boost::mutex> &,double)" (?wait_for@simple_time@tn@@YA_NAAVcondition_variable@boost@@AAV?$unique_lock@Vmutex@boost@@@4@N@Z) referenced in function "public: void __thiscall Tn::EventManager::CommandLoop::run(unsigned int)" (?run@CommandLoop@EventManager@Tn@@QAEXI@Z)
4>D:\RhineSDKTrunk\bindings\cpp-events\TestProxy\build\TestProxy-win32\Debug\TestProxy.dll : fatal error LNK1120: 2 unresolved externals


问题原因:

大部分链接的问题都是找不到函数的定义,这里是找不到steady_time()函数的定义

解决方法:

在cmakelist.txt 里面增加下面内容,增加引用库libfoundation.lib, steady_time()的定义就在这个库里面
 target_link_libraries(TestProxy 
  debug ${PROJECT_SOURCE_DIR}/../../modules/${TNPLATFORM}/lib/debug/libfoundation.lib
  optimized ${PROJECT_SOURCE_DIR}/../../modules/${TNPLATFORM}/lib/release/libfoundation.lib)

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值