doxygen

安装 SeaFile 客户端

时光怂恿深爱的人放手 提交于 2020-07-29 06:32:20
操作系统:优麒麟 Ubuntu Kylin 20.04 LTS 适用架构:AMD64、ARM64(鲲鹏、飞腾) 方法1、从优麒麟官方的软件仓库安装 sudo apt install seafile-gui 方法2、自行编译 下载源代码 https://github.com/haiwen/seafile-client/releases 安装一些依赖 一次性全部安装 sudo apt install cmake gcc g++ qt5-default qt5-qmake qttools5-dev qttools5-dev-tools sqlite3 libsqlite3-dev libjansson-dev libsearpc-dev libseafile-dev libevent-dev doxygen-gui graphviz libssl-dev 分步骤安装依赖 sudo apt install cmake sudo apt install gcc g++ 查看版本:gcc --version,g++ --version。 sudo apt install qt5-default qt5-qmake qttools5-dev qttools5-dev-tools 查看版本:qmake --version。版本Qt >= 5.5 sudo apt install sqlite3

Doxygen does not generate except the empty mainpage

烈酒焚心 提交于 2020-07-10 10:22:18
问题 I have a problem with Doxygen GUI I am currently using version of the Doxygen 1.8.19 I selected project path and directory for the scan source code correctly, And activated EXTRACT_ALL to ENABLE . The output I see: I have .cpp and .c codes together. But main is cpp so I added detail file in main.cpp as a: /** * @file : main.cpp * @brief : Main program body When I Run doxygen button, I have just seen, Empty Main page and I cant see another Tab. How can I solve this problem? My source code: In

Doxygen cannot parsing the structure documentation in the source file

一笑奈何 提交于 2020-06-29 04:08:33
问题 Doxygen cannot parsing a structure documentation inside .c file(and cannot create a corresponding .tex file) but parsing correctly from a separate .h file Assumptions: Does the structures inside .c file where generally the functions are documented are not visible to doxygen parser? Workflow: doxygen run >parsing from files>create a pdf The final generated file is missing the structure documentation inside .c file but all other structures inside a separate .h files are documented and find

Doxygen Seperate Inc/ and Src/ file problem

自闭症网瘾萝莉.ら 提交于 2020-06-17 09:47:08
问题 My project folder name is MyDoxy I have separate file system that is MyDoxy/Src/ and MyDoxy/Inc/ folder and they have some .c and .h files. main.cpp in the Src/ folder. When I generate the Doxygen.txt file in the MyDoxy file path. It doesn't generate files and file I talked about in the this post: Doxygen does not generate except the empty mainpage But when I create in the MyDoxy/Src/ path. It works for main.cpp and .c file but it didn't work for .h file for example main.h file. RECURSIVE =

How to get plain text files in Doxygen documentation?

China☆狼群 提交于 2020-05-27 08:51:09
问题 I cannot include any text file in my Doxygen documentation. The only exception is a README.md file that I set as the main page. In particular, I would like to see the Changelog.txt file in the documentation. I tried to add it explicitly in the INPUT field and in the FILE_PATTERNS field, without success. In the generated HTML documentation, I cannot find anything neither in the file list nor making a search. The only trace is in Doxygen's log file: Preprocessing C:/Source/Changelog.txt...

Excluding directories for Doxygen

醉酒当歌 提交于 2020-05-09 18:38:06
问题 I want Doxygen to ignore, bypass, not search the following directories of my project: */.svn/* */docs/* */Properties/* */bin/* According to the Doxygen FAQ: How can I exclude all test directories from my directory tree? Simply put an exclude pattern like this in the configuration file: EXCLUDE_PATTERNS = */test/* So, my Doxygen file looks like this: # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude

第12章 GPIO输出—使用固件库点亮LED

不打扰是莪最后的温柔 提交于 2020-04-28 04:45:22
本章参考资料:《 STM32F76xxx 参考手册》、库帮助文档《 STM32F779xx_User_Manual.chm》。 利用库建立好的工程模板,就可以方便地使用 STM32 HAL 库库编写应用程序了,可以说从这一章我们才开始迈入 STM32F7 开发的大门。 LED 灯的控制使用到 GPIO 外设的基本输出功能,本章中不再赘述 GPIO 外设的概念,如您忘记了,可重读前面“ GPIO 框图剖析 ”小节, STM32 HAL 库中 GPIO 初始化结构体 GPIO_TypeDef 的定义与“ 定义引脚模式的枚举类型 ”小节中讲解的相同。 12.1 硬件设计 本实验板连接了一个 RGB 彩灯及一个普通 LED 灯, RGB 彩灯实际上由三盏分别为红色、绿色、蓝色的 LED 灯组成,通过控制 RGB 颜色强度的组合,可以混合出各种色彩。 图 12-1 LED 硬件原理图 这些 LED 灯的阴极都是连接到 STM32 的 GPIO 引脚,只要我们控制 GPIO 引脚的电平输出状态,即可控制 LED 灯的亮灭。图中左上方,其中彩灯的阳极连接到的一个电路图符号“口口”,它表示引出排针,即此处本身断开,须通过跳线帽连接排针,把电源跟彩灯的阳极连起来,实验时需注意。 若您使用的实验板 LED 灯的连接方式或引脚不一样,只需根据我们的工程修改引脚即可,程序的控制原理相同。 12.2

第11章 GPIO输出—使用固件库点亮LED

扶醉桌前 提交于 2020-04-28 04:39:22
第11章 GPIO输出—使用固件库点亮LED 全套200集视频教程和1000页PDF教程请到秉火论坛下载: www.firebbs.cn 野火视频教程优酷观看网址:http://i.youku.com/firege 本章参考资料:《STM32F4xx参考手册》、库帮助文档《stm32f4xx_dsp_stdperiph_lib_um.chm》。 利用库建立好的工程模板,就可以方便地使用STM32标准库编写应用程序了,可以说从这一章我们才开始迈入STM32开发的大门。 LED灯的控制使用到GPIO外设的基本输出功能,本章中不再赘述GPIO外设的概念,如您忘记了,可重读前面"GPIO框图剖析"小节,STM32标准库中GPIO初始化结构体GPIO_TypeDef的定义与" 定义引脚模式的枚举类型 "小节中讲解的相同。 11.1 硬件设计 本实验板连接了一个RGB彩灯及一个普通LED灯,RGB彩灯实际上由三盏分别为红色、绿色、蓝色的LED灯组成,通过控制RGB颜色强度的组合,可以混合出各种色彩。 图 111 LED硬件原理图 这些LED灯的阴极都是连接到STM32的GPIO引脚,只要我们控制GPIO引脚的电平输出状态,即可控制LED灯的亮灭。图中左上方,其中彩灯的阳极连接到的一个电路图符号"口口",它表示引出排针,即此处本身断开,须通过跳线帽连接排针,把电源跟彩灯的阳极连起来,实验时需注意

FFMPEG 配置选项详细说明

陌路散爱 提交于 2020-04-23 05:00:25
转自:https://blog.csdn.net/z2066411585/article/details/81239446 用法:配置[选项] 选项:[描述后括号中的默认值] 帮助选项: --help 打印此消息 --quiet 抑制显示信息输出 --list-decoders 显示所有可用的解码器 --list-encoders 显示所有可用的编码器 --list-hwaccels 显示所有可用的硬件加速器 --list-demuxers 显示所有可用的解复用器 --list-muxers 显示所有可用的复用器 --list-parsers 显示所有可用的解析器 --list-protocols 显示所有可用的协议 --list-bsfs 显示所有可用的比特流过滤器 --list-indevs 显示所有可用的输入设备 --list-outdevs 显示所有可用的输出设备 --list-filters 显示所有可用的过滤器 标准选项: --logfile = FILE日志测试并输出到FILE [ffbuild / config.log] --disable-logging不记录配置调试信息 - 如果生成任何配置警告,则-fatal-warnings将失败 --prefix = PREFIX安装在PREFIX [/ usr / local] -bindir = DIR在DIR

Open Main Page of Doxygen Documentation with CMake

霸气de小男生 提交于 2020-04-18 03:49:36
问题 I have a project where I use Google Tests. I have the following CMake file in the root directory: set(CMAKE_C_COMPILER gcc) cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR) project(PROJECT) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTOUIC ON) set(SOURCES src/a.cpp src/b.cpp) set(TESTSOURCES test/tests.cpp src/a.cpp src/br.cpp) set(HEADERS src/a.h src/b.h src/c.h src/c.h) set(CMAKE_CXX_FLAGS "${MAKE_CXX_FLAGS} -std=c++0x") find_package(Qt5 COMPONENTS Core Widgets