-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyLibrary.pro
87 lines (80 loc) · 1.73 KB
/
MyLibrary.pro
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#-------------------------------------------------
#
# Project created by QtCreator 2017-01-06T17:15:15
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = MyLibrary
TEMPLATE = app
CONFIG += c++11
SOURCES += main.cpp\
mainwindow.cpp \
Logic/ArtBook.cpp \
Logic/Bill.cpp \
Logic/Book.cpp \
Logic/Date.cpp \
Logic/Librarian.cpp \
Logic/Library.cpp \
Logic/Member.cpp \
Logic/Novel.cpp \
Logic/Research.cpp \
Logic/ScienceBook.cpp \
Logic/Transaction.cpp \
Logic/Writer.cpp \
librarianui.cpp \
signup.cpp \
addmemberui.cpp \
addwriterui.cpp \
addbook.cpp \
showmembers.cpp \
borrowboow.cpp \
returnbook.cpp \
pay.cpp \
showborrowedbook.cpp \
findbook.cpp \
removemember.cpp \
removebook.cpp \
showavailablebook.cpp
HEADERS += mainwindow.h \
Logic/ArtBook.h \
Logic/Bill.h \
Logic/Book.h \
Logic/Date.h \
Logic/Librarian.h \
Logic/Library.h \
Logic/Member.h \
Logic/Novel.h \
Logic/Research.h \
Logic/ScienceBook.h \
Logic/Transaction.h \
Logic/Writer.h \
librarianui.h \
signup.h \
addmemberui.h \
addwriterui.h \
addbook.h \
showmembers.h \
borrowboow.h \
returnbook.h \
pay.h \
showborrowedbook.h \
findbook.h \
removemember.h \
removebook.h \
showavailablebook.h
FORMS += mainwindow.ui \
librarianui.ui \
signup.ui \
addmemberui.ui \
addwriterui.ui \
addbook.ui \
showmembers.ui \
borrowboow.ui \
returnbook.ui \
pay.ui \
showborrowedbook.ui \
findbook.ui \
removemember.ui \
removebook.ui \
showavailablebook.ui