-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEMP.pro
92 lines (79 loc) · 2.12 KB
/
EMP.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
88
89
90
91
92
QT += core gui sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
sources/addemp.cpp \
sources/database.cpp \
sources/database.cpp \
sources/delete.cpp \
sources/exp.cpp \
sources/experience.cpp \
main.cpp \
sources/mainwindow.cpp \
sources/search.cpp \
sources/searchdetails.cpp \
sources/showexp.cpp \
sources/update.cpp
HEADERS += \
headers/addemp.h \
headers/delete.h \
headers/exp.h \
headers/experience.h \
headers/mainwindow.h \
headers/search.h \
headers/searchdetails.h \
headers/showexp.h \
headers/update.h \
headers/update.h
FORMS += \
forms/addemp.ui \
forms/delete.ui \
forms/exp.ui \
forms/experience.ui \
forms/mainwindow.ui \
forms/search.ui \
forms/searchdetails.ui \
forms/showexp.ui \
forms/update.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
Images.qrc
android:
{
DISTFILES += \
android/AndroidManifest.xml \
android/assets/Employ.db \
android/assets/db/Employ.db \
android/build.gradle \
android/gradle/wrapper/gradle-wrapper.jar \
android/gradle/wrapper/gradle-wrapper.properties \
android/gradlew \
android/gradlew.bat \
android/libs/jcifs-1.3.19.jar \
android/res/values/libs.xml \
assets/db/Employ.db \
assets/db/Employ.sqbpro
android: include(C:/Users/pc/AppData/Local/Android/Sdk/android_openssl/openssl.pri)
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
android
{
my_files.path = /assets
my_files.files = $$PWD/android/*
INSTALLS += my_files
}
}
!android:
{
# copie la base de données dans le dossier build
CONFIG += file_copies
COPIES += bd
bd.files = Employ.db
bd.path = $$OUT_PWD/
bd.base = $$PWD/
}