码迷,mamicode.com
首页 > 其他好文 > 详细

Qt编程调用动态库

时间:2018-06-07 23:01:43      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:+=   bin   工程   生成   lin   class   库文件   make   连接   

Qt编程时想调用动态连接库,配置pro文件。

利用QMAKE_LIBDIR += ./bin 指定动态库目录为bin目录,LIBS += -l*** 指定动态库文件。

 

例:调用名为filepath的动态库(Windows下:filepath.dll  \  Linux下:filepath.so)

将动态连接库文件放到bin目录下,pro文件中添加

QMAKE_LIBDIR += ./bin
LIBS += -lfilepath

然后 用命令:qmake -tp vc即可生成VS工程,用VS进行编程开发。

 

Qt编程调用动态库

标签:+=   bin   工程   生成   lin   class   库文件   make   连接   

原文地址:https://www.cnblogs.com/AlexBai/p/9152915.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!