前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Qt工程文件介绍

Qt工程文件介绍

作者头像
zy010101
发布2020-04-08 16:53:26
6850
发布2020-04-08 16:53:26
举报
文章被收录于专栏:程序员程序员程序员
QT       += core gui            #Qt的两大核心模块,Qt gui和Qt core

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets     #Qt4之后,widgets模块从gui模块分离了出来,所以需要加上

CONFIG += c++11                 #支持C++11标准

# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.

DEFINES += QT_DEPRECATED_WARNINGS
#QT_DEPRECATED_WARNINGS表示当Qt的某些功能被标记为过时的,那么编译器会发出警告。

# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0

SOURCES += \                    #使用\来连接,使得它们仍旧是一行语句,这和C++一样
    main.cpp \                  #SOURCES是源文件
    widget.cpp

HEADERS += \                    #HEADERS是头文件
    widget.h

TRANSLATIONS += \               #为了让Qt语言家识别中文
    test_zh_CN.ts

# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档