All Posts
-
My first Qt program
Posted on 4 February 2011
My 2011 plan is to learn qt, and here comes my first qt program-a simple text editor. As you can see, one of the best thing about qt is its compatibility across the three major platforms-Linux(X11), windows and Mac(not shown here). Another great feature is its rich UI widget set. Almost all the feature of a text editor are already built-in in the QTextEdit widget. All I have to do is just to design an...
Read more...→ -
How to deploy your Qt application without any Dll files
Posted on 4 February 2011
Running Qt on Ubuntu is great, because most of the supporting libraries are installed by default. However, to deploy a Qt application on Windows, you have to make sure that the application comes with all the Dll files, which I personally find annoying. Of course, it is possible to package the whole Qt application in one exe executable-by linked against the Qt libraries statically. Following the guide here, and you will still get a frustrating...
Read more...→