首页 > 代码库 > qmake的配置功能(Configuration Features)
qmake的配置功能(Configuration Features)
Configuration Featuresqmake can be set up with extra configuration features that are specified in feature (.prf) files. These extra features often provide support for custom tools that are used during the build process. To add a feature to the build process, append the feature name (the stem of the feature filename) to the CONFIG variable.For example, qmake can configure the build process to take advantage of external libraries that are supported by pkg-config, such as the D-Bus and ogg libraries, with the following lines:
CONFIG += link_pkgconfigPKGCONFIG += ogg dbus-1
For more information about adding features, see Adding New Configuration Features.qmake可以设置被(.prf)文件指定的外部配置功能。这些外部功能常常在构建过程中给自定义的工具提供支持。增加一个功能到构建过程,追加功能名(不带后缀的功能文件名)到CONFIG变量。例如,qmake可以利用 pkg-config 支持的外部库配置构建过程,像D-Bus和ogg库,使用下面的2行:CONFIG += link_pkgconfigPKGCONFIG += ogg dbus-1更多的添加功能的信息请参考 Adding New Configuration Features.
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。