加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
qtstustatus.pro 2.45 KB
一键复制 编辑 原始数据 按行查看 历史
lianhang 提交于 2023-03-16 17:16 . ok
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += 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 += sql
# 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 += \
dao/daobase.cpp \
dao/daograde.cpp \
dao/daosetting.cpp \
dao/daostudent.cpp \
dao/daoteacher.cpp \
dao/daouser.cpp \
loginform.cpp \
main.cpp \
model/grade.cpp \
model/modelbase.cpp \
model/setting.cpp \
model/student.cpp \
model/teacher.cpp \
model/user.cpp \
service/svcgrade.cpp \
service/svcstudent.cpp \
service/svcsystem.cpp \
service/svcteacher.cpp \
service/svcuser.cpp \
ui/gradeedit.cpp \
ui/gradelist.cpp \
ui/modelconfirm.cpp \
ui/studentinfor.cpp \
ui/teacheredit.cpp \
ui/teacherlist.cpp \
util/iconfile.cpp \
util/serviceresult.cpp \
util/syspars.cpp \
ui/mainwindow.cpp \
ui/studentedit.cpp \
ui/studentlist.cpp \
ui/userlist.cpp \
ui/modalmsg.cpp \
ui/modifypwd.cpp
HEADERS += \
dao/daobase.h \
dao/daograde.h \
dao/daosetting.h \
dao/daostudent.h \
dao/daoteacher.h \
dao/daouser.h \
loginform.h \
model/grade.h \
model/modelbase.h \
model/setting.h \
model/student.h \
model/teacher.h \
model/user.h \
service/svcgrade.h \
service/svcstudent.h \
service/svcsystem.h \
service/svcteacher.h \
service/svcuser.h \
ui/gradeedit.h \
ui/gradelist.h \
ui/modelconfirm.h \
ui/studentinfor.h \
ui/teacherlist.h \
util/iconfile.h \
util/serviceresult.h \
util/syspars.h \
ui/mainwindow.h \
ui/studentedit.h \
ui/studentlist.h \
ui/userlist.h \
ui/modalmsg.h \
ui/modifypwd.h \
ui/teacheredit.h
FORMS += \
loginform.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化