qdoc.exe


Usage: qdoc [options] file1.qdocconf ...
# Qt文档生成器
Qt documentation generator # 设置
Options:
# 显示此帮助。
-?, -h, --help Displays this help.
# 显示版本信息。
-v, --version Displays version information.
# 在解析源代码时将参数定义为宏
-D <macro[=def]> Define the argument as a macro while
parsing sources
# 指定相关模块
--depends <module> Specify dependent modules
# 打开语法突出显示(使用 qdoc 编译运行比较慢)
--highlighting Turn on syntax highlighting (makes qdoc
run slower)
# 包含内部标记的内容
--showinternal Include content marked internal
# 将所有文档内容保存到 /dev/null。 如果有人只对qdoc错误感兴趣,这很有用。
--redirect-documentation-to-dev-null Save all documentation content to
/dev/null. Useful if someone is
interested in qdoc errors only.
# 不要为示例生成文档
--no-examples Do not generate documentation for
examples
# 指定QDoc应该搜索要加载的索引文件的目录
--indexdir <dir> Specify a directory where QDoc should
search for index files to load
# 在运行“make install”之后指定输出的目录
--installdir <dir> Specify the directory where the output
will be after running "make install"
# 报告从过时项目到非过时项目的链接
--obsoletelinks Report links from obsolete items to
non-obsolete items
# 指定输出目录,覆盖qdocconf文件中的设置
--outputdir <dir> Specify output directory, overrides
setting in qdocconf file
# 指定输出格式,覆盖qdocconf文件中的设置
--outputformat <format> Specify output format, overrides
setting in qdocconf file
# 不要打印链接错误(即缺少目标)
--no-link-errors Do not print link errors (i.e. missing
targets)
# 自动链接失败时显示错误
--autolink-errors Show errors when automatic linking
fails
# 启用调试输出
--debug Enable debug output
# 只运行qdoc来生成索引文件,而不是文档
--prepare Run qdoc only to generate an index
file, not the docs
# 运行qdoc来读取索引文件并生成文档
--generate Run qdoc to read the index files and
generate the docs
# 在stderr上记录进度。
--log-progress Log progress on stderr.
# 在所有的qdoc conf文件中运行一次qdoc。
--single-exec Run qdoc once over all the qdoc conf
files.
# 编写QA页面。
--write-qa-pages Write QA pages. # 参数
Arguments:
file1.qdocconf ... Input files

qdoc.exe的更多相关文章

  1. Windows+Qt+MinGW使用gRPC

    本文参考博客文章Qt gRPC 简单应用进行了亲自尝试,特此记录以下过程,为后人提供经验.我的环境:Windows10 x64需要依赖MSYS2环境(一个类Unix环境,包管理器)MSYS2 gith ...

  2. qt creator源码全方面分析(2)

    目录 doc文件夹 帮助文档 qdoc工具 doxygen工具 qtcreator.qdocconf qtcreator-dev.qdocconf doc文件夹 对于bin和dist文件夹这里就不做过 ...

  3. 让 windows 下的命令行程序 cmd.exe 用起来更顺手

    在 Windows 下使用 Larave 框架做开发,从 Composer 到 artisan 总是避免不了和 cmd.exe 打交道,系统默认的命令行界面却是不怎么好看,且每行显示的字符数是做了限制 ...

  4. 如何查看w3p.exe 和IIS 应用程序池的关系

    图形界面方式 命令行方式 如果找不到 appcmd Appcmd.exe exists at the location %systemroot%\system32\inetsrv\. You eith ...

  5. 使用java传参调用exe并且获取程序进度和返回结果的一种方法

    文章版权由作者李晓晖和博客园共有,若转载请于明显处标明出处:http://www.cnblogs.com/naaoveGIS/ 1.背景 在某个项目中需要考虑使用java后台调用由C#编写的切图程序( ...

  6. c#+handle.exe实现升级程序在运行时自动解除文件被占用的问题

    我公司最近升级程序经常报出更新失败问题,究其原因,原来是更新时,他们可能又打开了正在被更新的文件,导致更新文件时,文件被其它进程占用,无法正常更新而报错,为了解决这个问题,我花了一周时间查询多方资料及 ...

  7. Lenovo K29 笔记本经常没声音解决方案Hotkey[gevu18ww].exe

    下载 win8 快捷键驱动 安装即可解决 http://driverdl.lenovo.com.cn/lenovo/DriverFilesUploadFloder/36265/Hotkey[gevu1 ...

  8. vcredist_x64.exe vcredist_x86.exe 静默安装方法收集

    vcredist_x64.exe /install /quiet /norestart 更多方法参考如下: http://www.cnblogs.com/lidabo/archive/2013/01/ ...

  9. 项目自动化建构工具gradle 入门3——生一个exe的helloWorld

    前两次呢,我们能够用一个外部的jar 来实现输出helloWorld.但问题是我每次都要用java -jar 来执行,这样我们自己玩还可以,让用户玩就不好了.所以我们生成一个exe给他们吧.这次我们仍 ...

随机推荐

  1. python3 第十三章 - 数据类型之tuple(元组)

    元组与列表类似,不同之处在于元组的元素不能修改. 元组使用小括号,列表使用方括号. 元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可: language = ('c', 'c++', 'py ...

  2. python_如何使用生成器实现可迭代对象?

    案例分析: 实一个可迭代对象的类,它能迭代出给定范围内所有的素数: pn = Number(1, 30) for k in pn: print(k) 结果为:2,3,5,7,11,13,17,19,2 ...

  3. Java进阶篇(六)——Swing程序设计(下)

    三.布局管理器 Swing中,每个组件在容器中都有一个具体的位置和大小,在容器中摆放各自组件时很难判断其具体位置和大小,这里我们就要引入布局管理器了,它提供了基本的布局功能,可以有效的处理整个窗体的布 ...

  4. 新版elasticsearch的插件安装

    安装 yum localinstall elasticsearch-6.1.1.rpm -y mkdir -p /elk/{data,logs} && chown -R elastic ...

  5. spring boot热部署

    1.pom配置 参考:http://412887952-qq-com.iteye.com/blog/2300313 2.intellij配置 参考:http://blog.csdn.net/wjc47 ...

  6. ajax请求获取实时数据

    <!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> ...

  7. WindowXp-Windows7-Windows运行命令(转)

    Win7里面按 Win+R 呼出运行界面,一下是它的一些常用命令: 1.cleanmgr: 打开磁盘清理工具 2.compmgmt.msc: 计算机管理 3.conf: 启动系统配置实用程序 4.ch ...

  8. 使用FileReader实现前端预览所选图片

    需求描述 在浏览器环境下进开发网站(也就是B/S架构的应用),获取到当前设备上的图片后,希望可以在上传到服务器前简单预览一下图片内容. 具体实现 主要代码 html 部分 <input type ...

  9. 认识python中的set集合及其用法

    python中,集合(set)是一个无序排列,可哈希, 支持集合关系测试,不支持索引和切片操作,没有特定语法格式, 只能通过工厂函数创建.集合里不会出现两个相同的元素, 所以集合常用来对字符串或元组或 ...

  10. 前端 js技术

    1.JavaScript代码存在形式 <!-- 方式一 --> <script type"text/javascript" src="JS文件" ...