-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodePracticeClassProject.pro
More file actions
48 lines (41 loc) · 933 Bytes
/
CodePracticeClassProject.pro
File metadata and controls
48 lines (41 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#-------------------------------------------------
#
# Project created by QtCreator 2020-07-13T17:22:30
#
#-------------------------------------------------
QT += core gui
QT += sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = CodePracticeClassProject
TEMPLATE = app
SOURCES += main.cpp\
delbook.cpp \
mainwindow.cpp \
logindlg.cpp \
managerdlg.cpp \
newbook.cpp \
registerdlg.cpp \
changepwddlg.cpp \
studentlistdlg.cpp \
booklistdlg.cpp \
modifybook.cpp
HEADERS += mainwindow.h \
delbook.h \
logindlg.h \
managerdlg.h \
newbook.h \
registerdlg.h \
changepwddlg.h \
studentlistdlg.h \
booklistdlg.h \
modifybook.h
FORMS += mainwindow.ui \
delbook.ui \
logindlg.ui \
managerdlg.ui \
newbook.ui \
registerdlg.ui \
changepwddlg.ui \
studentlistdlg.ui \
booklistdlg.ui \
modifybook.ui