欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

qmake使用

程序员文章站 2024-01-04 12:57:58
...

qmake使用

  • 编写如下脚本hello.pro
  CONFIG += debug
  HEADERS += hello.h
  SOURCES += hello.cpp
  SOURCES += main.cpp
  win32 {
      SOURCES += hellowin.cpp
  }
  unix {
      SOURCES += hellounix.cpp
  }
  !exists( main.cpp ) {
      error( "No main.cpp file found" )
  }
  win32:debug {
      CONFIG += console
  }
  • 运行指令
qmake -o Makefile hello.pro
  • 如过要继续生成vs专用的项目,运行如下指令
qmake -tp vc hello.pro
  • qmake注释符号:#

  • 后续操作的话,先qmake,然后再qmake -tp vc hello.pro

上一篇:

下一篇: