使用 Qt 与 Visual C++ 2008 创建应用程序

 

使用 Qt 与 Visual C++ 2008 创建应用程序

目的: 学会如何使用 Visual C++ 命令提示和生成文件项目创建一个简单的Qt应用程序步骤:

  1. 安装 Qt libraries for windows(VS 2008), 该文件下载地址 http://qt.nokia.com/downloads , 选择 LGPL. 还可在该地址下载 Qt SDK for Windows, qt-vs-addin.
  2. 增加环境变量 QTDIR, 其值为Qt的安装目录, 例如: D:/Qt-4.4.3. 修改环境变量 Path, 将 Qt的"bin"目录添加至其内.
  3. 在一个新的目录里创建 Hello.cpp 文件. 代码如下:
        
        
        
        
    [cpp] view plain copy print ?
    1. #include "QApplication"     
    2. #include "QPushButton"     
    3.     
    4. int main(int argc, char *argv[])    
    5. {    
    6.     QApplication app(argc, argv);    
    7.     QPushButton hello("Hello world");    
    8.     hello.resize(100, 30);    
    9.     
    10.     hello.show();    
    11.     return app.exec();    
    12. }  
    #include "QApplication" #include "QPushButton" int main(int argc, char *argv[]) { QApplication app(argc, argv); QPushButton hello("Hello world"); hello.resize(100, 30); hello.show(); return app.exec(); }
  4. 启动 Visual Studio 2008 命令提示, 使用磁盘符号和cd命令移动至 hello.cpp 文件所在的目录
  5. 键入 如下的命令
    qmake -project -0 hello.pro qmake hello.pro nmake
  6. 这样就在debug目录中生成了文件 hello.exe
  7. 如果要使用 Visual Studio Express IDE, 还需要进行一些步骤: 选择菜单"工具>选项>项目和解决方案>VC++目录", 在包含文件中增加"$(QTDIR)/include", "$(QTDIR)/include/QtCore", "$(QTDIR)/include/QtGui". 在库文件中增加 "$(QTDIR)/lib".
  8. 创建一个新的项目("文件>新建>项目>Visual C++>常规>生成文件项目"), 名称为"HelloQt"
  9. 选择菜单"项目>属性>配置属性>NMake", 生成命令行中写入"qmake -project && qmake && nmake release-all", 输出中则写"release/HelloQt.exe"
  10. 添加新文件"HelloQt.cpp", 输入上面的代码
  11. 使用快捷键 "Ctrl-F5" 或者菜单"调试>开始执行(不调试)", 则生成了 HelloQt.exe

使用 Qt 与 Visual C++ 2008 创建应用程序_第1张图片

使用 Qt 与 Visual C++ 2008 创建应用程序_第2张图片

使用 Qt 与 Visual C++ 2008 创建应用程序_第3张图片 原文出处:http://blog.csdn.net/summericeyl/article/details/6329239

你可能感兴趣的:(使用 Qt 与 Visual C++ 2008 创建应用程序)