Qt c++ not running in cursor

sorry guys I’m new and want to launch qt c++ qmake in cursor.
I usually launch program in qt creator and it’s perfectly fine but still cannot adapt to this ide.
I installed c/c++ ,cmake, qt c++, code runner. And also add my custom includepath to json setting as follow:
{
“configurations”: [
{
“name”: “Linux”,
“includePath”: [
“${workspaceFolder}/**”,
“/usr/include”,
“/usr/include/x86_64-linux-gnu”,
“/home/alino/Qt5.13.0/5.13.0/gcc_64/include”
],
“defines”: ,
“compilerPath”: “/usr/bin/g++”,
“cStandard”: “c17”,
“cppStandard”: “c++14”,
“intelliSenseMode”: “linux-clang-x64”,
“configurationProvider”: “ms-vscode.makefile-tools”
}
],
“version”: 4
}

and still I really confused how to run just a simple qt qmake .pro file in cusror.

This is not related to Cursor itself. As Cursor is a fork of Visual Studio Code, you can search the Internet on how to run qmake-based Qt projects in VS Code. Alternatively, you can try CMake-based Qt projects, as they have recently switched the build system. There’s an extension from Qt Foundation for VS Code that might help you.