VLC 架构初步分析 (二)

2014-11-24 00:43:51 · 作者: · 浏览: 6
ULES(QT4, [QtCore QtGui QtNetwork >=4.6.0], [

执行autoreconf命令

./configure

make

如何向工程中增加图像资源
将图像文件,比如a.png放到/modules/gui/qt4/pixmaps下。

在modules/gui/qt4/Modules.am中的DEPS_res区增加一项:pixmaps/a.png。

在modules/gui/qt4/Modules.am中的区增加一条:pixmaps/a.png

autoreconf,configure

在源文件中这样使用:QIcon(“:a_icon”);

make