-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDBApp.pro
45 lines (39 loc) · 995 Bytes
/
DBApp.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
#-------------------------------------------------
#
# Project created by QtCreator 2013-03-23T15:46:07
#
#-------------------------------------------------
QT += core gui
QT += sql
TARGET = DBApp
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
CoursesDatabaseManager.cpp \
InventoryItem.cpp \
InventoryDatabaseManager.cpp \
GradesDatabaseManager.cpp \
login.cpp \
AccountsListTransactionsDialog.cpp \
OldCourse.cpp \
Course.cpp \
student.cpp \
studentdatabasemanager.cpp \
subject.cpp \
subjectperformancedetails.cpp
HEADERS += mainwindow.h \
Course.h \
InventoryItem.h \
InventoryDatabaseManager.h \
EnterSubjectGradeQuery.h \
GradesDatabaseManager.h \
login.h \
ResearchPaper.h \
ResearchProject.h \
Transaction.h \
AccountsListTransactionsDialog.h \
student.h \
studentdatabasemanager.h \
subject.h \
subjectperformancedetails.h
FORMS += mainwindow.ui