-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQTInstroduction.pro
50 lines (42 loc) · 1008 Bytes
/
QTInstroduction.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
#-------------------------------------------------
#
# Project created by QtCreator 2015-02-10T10:47:53
#
#-------------------------------------------------
QT += core gui
QT += sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = QTInstroduction
TEMPLATE = app
SOURCES += main.cpp\
c_init_bd.cpp \
modele_patient.cpp \
modele_ressource.cpp \
controleur_ressource.cpp \
controleur_patient.cpp \
vue_mainwindow.cpp \
vue_patientdlg.cpp \
vue_logindlg.cpp \
vue_ressourcedlg.cpp \
controleur_login.cpp \
vue_aboutdlg.cpp
HEADERS += \
c_init_bd.h \
modele_patient.h \
modele_ressource.h \
controleur_ressource.h \
controleur_patient.h \
vue_mainwindow.h \
vue_patientdlg.h \
vue_logindlg.h \
vue_ressourcedlg.h \
controleur_login.h \
vue_aboutdlg.h
FORMS += \
patientdlg.ui \
logindlg.ui \
mainwindowdlg.ui \
ressourcedlg.ui \
aboutdlg.ui
RESOURCES += \
resource.qrc