How to generate vcproj file from .pro file

From Qt Wiki
Revision as of 16:00, 3 March 2015 by AutoSpider (talk | contribs) (Add "cleanup" tag)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

English 简体中文

If you simply have bunch of header file and source file, it is very easy to generate .pro file,you dont need to add each file name in .pro.

what you need to do is put all those files in on folder, using command prompt set your qmake version in path and do following

qmake -project Above command will create a project file .pro it will name it as of parent folder name.

qmake -tp vc test.pro The above command will generate vcproj or dsp file depending up on what MSVS version you have. You can also add your vcproj file name using -o option.