Qt Summay

最近糊里糊涂地学起了Qt,事情的起因是公司的项目用到了C++,因为好久没用这个,连try-catch都不知道怎么用了。搜了一个网页,http://cartan.cas.suffolk.edu/oopdocbook/opensource/trycatch.html,《Introduction to Design Patterns in C++ with Qt 4》里的一节,看看这本书挺好的,就想到ChinaPub上买,但是好多读者反应没有这本书好,《C++ GUI Programming with Qt4, 2nd Edition》,http://www.informit.com/store/product.aspx?isbn=0132354160.正好是清明节,看了点,觉得挺有意思的。

summary
1. install qt-win-opensource-4.4.3-mingw
2. download qt-book-examples.zip
3. run Qt 4.4.3 Command Prompt
4. edit an example, cd HelloQt
   - qmake -project => HelloQt.pro
   - qmake HelloQt.pro => makefile
   - make *.o, *.exe
5. if you use the generated application in other machines, copy files
   - mingwm10.dll
   - QtCore4.dll, QtCored4.dll
   - QtGui4.dll, QtGuid4.dll

你可能感兴趣的:(C++,c,C#,qt,OpenSource)