当前位置: 首页 > article >正文

cursor+QT5.12.12

一、QT相关

1、环境设置相关

2、安装插件:

在CURSOR中安装以下插件:

C/C++插件:这是必需的,用于支持C/C++语言开发。
Qt Configure:用于配置Qt环境。
Qt Tools:提供Qt相关的工具支持。
CMake:如果你使用的是Qt6或更高版本,需要使用CMake而不是qmake。
CMake Tools:辅助CMake构建的工具。

3、配置C/C++插件:

使用快捷键 Ctrl+Shift+P 打开命令面板,输入 C++,选择编辑配置.

c_cpp_properties.json文件如下:

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**",
                "C:/Qt/Qt5.12.12/5.12.12/mingw73_64/include",
                "C:/Qt/Qt5.12.12/5.12.12/mingw73_64/include/QtWidgets"
                
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "windowsSdkVersion": "10.0.22000.0",
            "compilerPath": "cl.exe",
            "cStandard": "c17",
            "cppStandard": "c++17",
            "intelliSenseMode": "windows-msvc-x64"
        }
    ],
    "version": 4
}

4、新建Qt项目

千万记得去掉debug和release的shadow.(去掉之后编译一下才生效)

二、CURSOR相关

1、tasks.json

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "qmake-debug",
            "type": "shell",
            "command": "qmake",
            "args": [
                "C:/Users/Administrator/Documents/untitled16/untitled16.pro",
                "CONFIG+=debug"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": []
        },
        {
            "label": "qmake-release",
            "type": "shell",
            "command": "qmake",
            "args": [
                "C:/Users/Administrator/Documents/untitled16/untitled16.pro",
                "CONFIG+=release"
            ],
            "group": "build",
            "problemMatcher": []
        },
        {
            "label": "make-debug",
            "type": "shell",
            "command": "mingw32-make",
            "dependsOn": "qmake-debug",
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": [
                "$gcc"
            ]
        },
        {
            "label": "make-release",
            "type": "shell",
            "command": "mingw32-make",
            "dependsOn": "qmake-release",
            "group": "build",
            "problemMatcher": [
                "$gcc"
            ]
        }
    ]
}

2、c_cpp_properties.json

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**",
                "C:/Qt/Qt5.12.12/5.12.12/mingw73_64/include",
                "C:/Qt/Qt5.12.12/5.12.12/mingw73_64/include/QtWidgets"
                
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "windowsSdkVersion": "10.0.22000.0",
            "compilerPath": "cl.exe",
            "cStandard": "c17",
            "cppStandard": "c++17",
            "intelliSenseMode": "windows-msvc-x64"
        }
    ],
    "version": 4
}

这样,就可以run task,先qmake,后make

注意,生成的release版本的exe文件,需要windeployqt 打包一下,否则执行的时候会提示入口错误。


http://www.kler.cn/a/393619.html

相关文章:

  • 基于springboot的汽车租赁管理系统的设计与实现
  • 深度学习——优化算法、激活函数、归一化、正则化
  • MySQL与Oracle对比及区别
  • 数据库SQL——连接表达式(JOIN)图解
  • Sigrity SPEED2000 Power Ground Noise Simulation模式如何查看PDS系统的自阻抗操作指导
  • 在Java中使用ModelMapper简化Shapefile属性转JavaBean实战
  • 无需云端!国产开源大语言模型llama.cpp本地实战
  • mysql时间时区修改、set global、配置文件-default-time-zone
  • Prettier - Code formatter插件使用(前端美化插件)
  • 数据中心的拥塞控制
  • 在 Linux 系统上部署 Apache Solr
  • 基于Python的网上银行综合管理系统
  • 大数据新视界 -- 大数据大厂之 Impala 性能飞跃:动态分区调整的策略与方法(上)(21 / 30)
  • WebSocket和HTTP协议的性能比较与选择
  • 第四十四章 Vue之actions/mapActions/getters
  • 数据结构练习题和答案
  • 想要监控办公电脑,好用的监控软件怎么选择
  • cache中block(cache line)和frame概念
  • python各种方法总结
  • 【Linux】ISCSI实验
  • 使用git安装Django-micro,limit使用
  • Mysql 5.7.6以上版本怎样关闭GTID(由GTID改为基于file,position方式)
  • python习题练习
  • WebGIS四大地图框架:Leaflet、OpenLayers、Mapbox、Cesium
  • 【插件】多断言 插件pytest-assume
  • 2024年8个最佳在线websocket调试工具选择