PDA

View Full Version : Visual Studio 2008 wizard for generating Qt makefile projects



sandytf
21st May 2008, 22:21
I would like to announce that my Visual Studio 2008 wizard for generating Qt makefile projects is now available.

I generally need to create a large number of small Qt test projects and found creating makefile projects rather cumbersome and time consuming. As a result, I decided to create a Visual Studio 2008 wizard that automated the task. You can download the installer from my projects page at: http://www.sanfordfreedman.com/personal/projects/. At the moment, console, gui, and static library projects have received the most testing. If you like this wizard, please link to my projects page instead of hosting a copy or linking directly to the executable.

coolboy123
22nd May 2008, 06:03
it seems pretty cool!
Can you write a tutorial about how to create it?

jpn
22nd May 2008, 19:11
I generally need to create a large number of small Qt test projects and found creating makefile projects rather cumbersome and time consuming.
Did you know that qmake can generate Visual Studio projects?

sandytf
23rd May 2008, 00:21
For anyone interested in how the wizard works, there are a number of good tutorials on the web about creating Visual Studio wizards. The process is actually very simple. In fact, Visual Studio can even create default wizards for you. Except for a few icons, the entire wizard consists of text files so if you extract the contents of the installer you can view the "source" (you can also find the text files within your Visual Studio's VC directory if you have already installed the wizard). If you click "view details" while installing the wizard, it will provide a complete list of files and locations.

I know that qmake can generate Visual Studio projects. There are three reasons why I created this wizard. First, the wizard allows for easy creation of Qt projects in a manner consistent with creating other projects within Visual Studio. Second, I personally find the wizard more convenient than other methods. Third, I wanted to learn how to create a wizard in Visual Studio. This is actually a very beneficial task for anyone who frequently uses Visual Studio as it reveals some of how the program works.

sandytf
10th May 2011, 18:36
The location of the wizard has changed to: http://www.sanfordfreedman.com/utilities/index.html. Also, since I have started working on a version for Visual Studio 2010, the name has been changed to QtWizard 2008.

sandytf
9th July 2013, 21:17
I just released a beta version of QtWizard 2012. This version supports Visual Studio 2012, Qt 5.1+, and provides Windows XP support. While a beta version, the wizard should be stable enough for daily use. The installer can be downloaded from my website: http://www.sanfordfreedman.com/utilities. In addition to QtWizard, my website also has directions for compiling Qt 5.1 with Visual C++ 2012 while maintaining support for Windows XP. These directions can be found at: http://www.sanfordfreedman.com/QtInstallationAndSetup.

sandytf
2nd August 2013, 18:26
I just updated the QtWizard 2012 to version Beta 2 (0.2.0.0). You can download it here: http://www.sanfordfreedman.com/utilities/. The main changes are adding (a lot) more include paths to intellisense and fixing a bug where main.cpp was not listed as a source when creating a console application.

sandytf
3rd September 2013, 17:24
I just updated the QtWizard 2012 to Beta 3. This change fixes an issue that prevented the wizard from running properly on most computers.

d_stranz
28th October 2013, 02:08
What advantage does your plugin have over the Qt VS Add-in from Digia?