无论如何在ubuntu上将cmake与mqueue.h一起使用

时间:2019-05-24 12:18:38

标签: cmake ipc

CMakeFiles / mqcreate.dir / mqcreate1.cc.o:在函数main': mqcreate1.cc:(.text+0xa0): undefined reference to mq_open'中 mqcreate1.cc:(.text+0xad):未定义对“ mq_close”的引用

1 个答案:

答案 0 :(得分:0)

尝试一下:

   find_library(LIBRT rt) 
   if(LIBRT)
      target_link_libraries(target_name ${LIBRT})
   endif()

link to the source