博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
command line compile qt program
阅读量:5328 次
发布时间:2019-06-14

本文共 382 字,大约阅读时间需要 1 分钟。

1) linux version:
1. create cpp file, ex: test.cpp
  #include <QtGui>
  int main(int argc, char *argv[])
  {
      QApplication app(argc, argv);
      QLabel *label = new QLabel("Linux is wonderful", 0);
      app.setMainWidget(label);   
      label->show();
     return app.exec();
  }
2. use qmake:
qmake -project
 
3. use make
make
 
4. run programe
./test

转载于:https://www.cnblogs.com/phnix/archive/2013/05/23/3094953.html

你可能感兴趣的文章
http://www.bootcss.com/
查看>>
python tkinter GUI绘制,以及点击更新显示图片
查看>>
C语言栈的实现
查看>>
SRM 628 DIV2
查看>>
2018-2019-2 20165314『网络对抗技术』Exp5:MSF基础应用
查看>>
SecureCRT的使用方法和技巧(详细使用教程)
查看>>
2018icpc徐州OnlineA Hard to prepare
查看>>
使用命令创建数据库和表
查看>>
【转】redo与undo
查看>>
wpf样式绑定 行为绑定 事件关联 路由事件实例
查看>>
Oracle事务
查看>>
String类中的equals方法总结(转载)
查看>>
标识符
查看>>
内存地址对齐
查看>>
创新课程管理系统数据库设计心得
查看>>
Could not resolve view with name '***' in servlet with name 'dispatcher'
查看>>
[转载] redis 的两种持久化方式及原理
查看>>
MyBaits学习
查看>>
管道,数据共享,进程池
查看>>
SDUTOJ3754_黑白棋(纯模拟)
查看>>