Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
How to generate vcproj file from .pro file
Jump to navigation
Jump to search
English 简体中文
To generate an initial .pro file you can use qmake's project mode.
To generate a Visual Studio project file, run qmake like this:
qmake -tp vc myproject.pro
The above command will generate vcxproj, vcproj or dsp file depending on the Visual Studio version you're using. The -tp switch is documented in the qmake manual. You can also add the name of your VS project file name using the -o option.