Results 1 to 5 of 5

Thread: How can I move from VS2005 Qt4.5 to Qt Creator?

  1. #1
    Join Date
    Apr 2009
    Posts
    132
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows
    Thanks
    67
    Thanked 6 Times in 5 Posts

    Smile How can I move from VS2005 Qt4.5 to Qt Creator?

    Hi dudes!

    I have a medium size program I did using VS2005 and Qt4.5 open source edition. My question is: Is it easy to convert my project to Qt Creator? (in order to avoid visual studio licenses) or are there any issues or anything I should know?

    Thanks a lot

  2. #2
    Join Date
    Jul 2009
    Location
    Enschede, Netherlands
    Posts
    462
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows
    Thanked 69 Times in 67 Posts

    Default Re: How can I move from VS2005 Qt4.5 to Qt Creator?

    You can use the Qt Visual studio plugin to create a basic project file (or qmake -project for that matter). You will probably have to edit most of the project file yourself. There is no 1-on-1 conversion from vcproj to pro at this moment. In any case, the qmake project will end up much clearer than the sln/vcproj mess that visual studio sometimes ends up with.

    While using Qt Creator I sometimes notice serious delays when debugging. At the rate the trolls are working on new stuff I expect that will improve significantly over the next couple of months.

  3. #3
    Join Date
    Apr 2009
    Posts
    132
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows
    Thanks
    67
    Thanked 6 Times in 5 Posts

    Default Re: How can I move from VS2005 Qt4.5 to Qt Creator?

    One question: Is it true that Qt Creator doesn't allow directory structures in projects?
    I would like to integrate some libs on different folders.


    Thanks.

  4. #4
    Join Date
    Jul 2009
    Location
    Enschede, Netherlands
    Posts
    462
    Qt products
    Qt4
    Platforms
    Unix/X11 Windows
    Thanked 69 Times in 67 Posts

    Default Re: How can I move from VS2005 Qt4.5 to Qt Creator?

    That's true. However if you spend some time, you can work your way around that using the include function in your project file.

    An other way is to put all your projects into their own directories (with equally named project files) and make a top level file that uses the subdirs template. That way you will at least have your different projects separated, but still have them accessible through only one project description. A rather extensive example are the Qt project files themselves.

  5. #5
    Join Date
    Apr 2009
    Posts
    132
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows
    Thanks
    67
    Thanked 6 Times in 5 Posts

    Default Re: How can I move from VS2005 Qt4.5 to Qt Creator?

    Thanks for reply.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.