上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 38 下一页
摘要: 概述 本文样式环境: win10+cmake 3.18 本文将介绍使用CMAKE配置项目输出目录和 LIbrary项目的输出目录 本文将介绍 cmake的file函数的基础用法之拷贝文件 重点, 这些设置一定要放在函数add_library或者add_executable之前 重点, 这些设置一定要 阅读全文
posted @ 2021-03-08 22:37 mohist 阅读(13551) 评论(3) 推荐(0) 编辑
摘要: 概述 本文将介绍cmak引入第三方库debug和release不同配置。 Windows上,习惯将debug模式下生成的动态库名后缀添加D 以作和release区分。cmake创建一个项目A,A引入动态库B,cmake怎么配置A链接动态库B的debug和release对应的库呢 本文的教程是基于 这 阅读全文
posted @ 2021-03-02 01:07 mohist 阅读(5179) 评论(2) 推荐(1) 编辑
摘要: 概述 本文将介绍cmake配置动态库和可执行程序两种,使用cmake为其添加Debug和Release配置下的后缀 动态库 下面将介绍使用CMAKE_DEBUG_POSTFIX和CMAKE_RELEASE_POSTFIX设置debug和release配置下的动态库输出目标名添加后缀 开始之前,介绍重 阅读全文
posted @ 2021-03-02 00:36 mohist 阅读(2615) 评论(1) 推荐(0) 编辑
摘要: 概述 本文将介绍Qt5使用类QSerialPortInfo获取可以用串口号 效果 机器上配置的虚拟串口 程序获取结果 源码开始 .pro文件中添加下面的代码 QT += serialport 然后,执行一次qmake 包含头文件 #include <QtSerialPort/QSerialPort> 阅读全文
posted @ 2021-02-12 20:29 mohist 阅读(2178) 评论(0) 推荐(0) 编辑
摘要: fseek用法 fseek用来移动文件指针。函数原型 int fseek(FILE * stream, long offset, int fromwhere); 参数解释: stream 是文件流指针 offset 是相对文件起始位置的偏移量 fromwhere移动到哪儿。 其值如下 SEEK_SE 阅读全文
posted @ 2021-02-07 00:38 mohist 阅读(4193) 评论(0) 推荐(0) 编辑
摘要: 代码 核心代码 FILE *pfile = nullptr; int ret = fopen_s(&pfile, str.c_str(), "rb"); /// 0 = 打开成功, if (0 == ret) { if (pfile) { /// 将文件指针移动到文件尾 fseek(pfile, 0 阅读全文
posted @ 2021-02-06 23:33 mohist 阅读(2677) 评论(0) 推荐(0) 编辑
摘要: 代码 核心代码 /// 判断文件是否存在 bool is_exist_file_(std::string&& str_file) { struct stat st; return (0 == stat(str_file.c_str(), &st)); } 完整代码 #include <iostrea 阅读全文
posted @ 2021-02-06 23:23 mohist 阅读(439) 评论(4) 推荐(0) 编辑
摘要: 概述 本文将介绍使用 Qt5使用QSqlQuery读写sqlite3。 设计初衷: 项目需要使用配置文件,配置文件使用的是sqlite3 , 这是V1.0.0, 后期增加其他功能。 需要C11支持(可删除代码中的c11代码),不过后期可能会增加更多基于C++11代码 Qt creator 的.pro 阅读全文
posted @ 2021-01-26 00:24 mohist 阅读(2023) 评论(0) 推荐(0) 编辑
摘要: Note qt version: 5.12 qt creator: 4.13 本文将介绍 设置无边窗口和设置窗口的移动 你要知道: QDialog 和 QMainWindow都是 QWidget的派生类 本文建立的是基于QDialog的demo 演示的demo将是窗口半透明控件不透明 设置无边窗口 阅读全文
posted @ 2021-01-09 23:38 mohist 阅读(1067) 评论(0) 推荐(0) 编辑
摘要: note creator version : 4.13.1 敲黑板,一定要先配置好 Qt creator的default build directory , 再创建项目,最后再编译 敲黑板,一定要先配置好 Qt creator的default build directory , 再创建项目,最后再编 阅读全文
posted @ 2021-01-08 23:26 mohist 阅读(4857) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 38 下一页