随笔分类 -  windows

摘要:OSGQt编译安装 效果演示 1、准备工作 最新版的osg中不附带osgQt源码,所以需要单独下载编译 在编译osgQt前需要先编译osg源码,osg编译安装看这里 编译osgQt的环境与之前编译osg源码一样 2、osgQt下载 github 可使用git下载: git clone git@git 阅读全文
posted @ 2021-06-27 22:55 mahuifa 阅读(3529) 评论(0) 推荐(0)
摘要:OSG编译安装-MSVC 1、准备工作 1.1 环境 Windows10 Qt5.14.2 Microsoft Visual Studio2017 cmake-3.20.4-windows-x86_64.msi 1.2 osg下载 osg官网 github OSG源码(OpenSceneGraph) 阅读全文
posted @ 2021-06-27 22:46 mahuifa 阅读(1415) 评论(1) 推荐(1)
摘要:openCV编译安装-MSCV-Windows10-Qt 1、准备工作 CMake:下载最新版本即可 openCV:下载任意版本,可以下载源码或者官方编译好的VS版(其中也带有源码),我下载的是opencv-4.5.2-vc14_vc15.exe Visual Studio:这里使用的是2017 Q 阅读全文
posted @ 2021-06-10 00:13 mahuifa 阅读(502) 评论(0) 推荐(0)
摘要:Qt一键部署配置(Qt程序打包) 1、版本 系统版本:windows10 Qt版本:5.15.2 2、设置可执行程序输出路径 打开.pro文件,输入DESTDIR = $$PWD/../bin,这行代码意思是在编译后将可执行程序放在../bin路径中。 3、配置步骤 3.1 新建一个Qt工程(此处不 阅读全文
posted @ 2021-06-02 23:08 mahuifa 阅读(2040) 评论(0) 推荐(0)
摘要:多Excel文件内容查询工具。 告别繁琐重复的体力劳动,一分钟干完一天的活。🙉 码云 github 下载 当需要在多个Excel表格中查询需要的信息是,一个文件一个文件的去查询非常麻烦。 虽然有其他方法可以实现在多个Excel表格中查询目标信息,但使用起来不是很方便,对小白也不是很友好。 受够了C 阅读全文
posted @ 2021-02-27 22:26 mahuifa 阅读(1645) 评论(0) 推荐(0)
摘要:Server #include <stdio.h> #include <Ws2tcpip.h> #include <winsock2.h> #pragma comment(lib,"ws2_32.lib") ​ #define PORT 6060 #define IP "ff02::2" #defi 阅读全文
posted @ 2020-12-24 22:21 mahuifa 阅读(788) 评论(0) 推荐(0)
摘要:Server #include <stdio.h> #include <Ws2tcpip.h> #include <winsock2.h> #define HELLO_PORT 7905 #define HELLO_GROUP "224.0.0.1" #pragma comment(lib,"ws2 阅读全文
posted @ 2020-12-24 22:19 mahuifa 阅读(692) 评论(0) 推荐(0)
摘要:Cilect #include <stdio.h> #include <Ws2tcpip.h> #include <winsock2.h> #define HELLO_PORT 7905 #define HELLO_GROUP "224.0.0.1" #pragma comment(lib,"ws2 阅读全文
posted @ 2020-12-24 22:16 mahuifa 阅读(304) 评论(0) 推荐(0)
摘要:在windows下使用qt时调用QWebEngineView 库会报错,即使在pro文件QT += webenginewidgets也找不到, 而在MinGW和MSVC2015的路径下我并没有找到这个库,在MSVC的路径下可以找到,在QT安装后是无法使用MSVC的,所以就需要配置MSVC环境 1、准 阅读全文
posted @ 2020-04-25 16:51 mahuifa 阅读(5012) 评论(0) 推荐(0)