-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmployees.pro
97 lines (83 loc) · 2.31 KB
/
Employees.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
93
94
95
96
97
TEMPLATE = app
QT += qml quick quickcontrols2 widgets sql
CONFIG += c++11
TARGET = PERSONELLE
SOURCES += main.cpp \
sources/salesman.cpp \
sources/contract.cpp \
sources/database.cpp \
sources/listmodel.cpp
RESOURCES += qml.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
android:
{
DISTFILES += \
Images/Attendance-Monitoring560.png \
Images/Corporate Management.png \
Images/add.png \
Images/cancel.png \
Images/cpp.png \
Images/css.png \
Images/edit.png \
Images/exit.png \
Images/icon.png \
Images/ok.png \
Images/qt.png \
Images/remove.png \
Images/sqlite.jpg \
Images/trolley.png \
Images/user_add.png \
Images/user_edit.png \
Images/user_menu.png \
Images/user_ok.png \
Images/user_remove.png \
Images/users.png \
Staff.db \
android/AndroidManifest.xml \
android/build.gradle \
android/gradle/wrapper/gradle-wrapper.jar \
android/gradle/wrapper/gradle-wrapper.properties \
android/gradlew \
android/gradlew.bat \
android/res/values/libs.xml \
backend.js \
docs/Doxyfile \
screenshots/Screenshot_20230119-164507.png \
screenshots/Screenshot_20230119-164528.png \
screenshots/Screenshot_20230119-164540.png \
screenshots/Screenshot_20230119-164550.png \
screenshots/Screenshot_20230119-164604.png \
screenshots/Screenshot_20230119-164652.png
android: include(C:/Users/pc/AppData/Local/Android/Sdk/android_openssl/openssl.pri)
!android:
{
# copie la base de données dans le dossier build
CONFIG += file_copies
COPIES += bd
bd.files = Staff.db
bd.path = $$OUT_PWD/
bd.base = $$PWD/
}
contains(ANDROID_TARGET_ARCH,armeabi-v7a) {
ANDROID_PACKAGE_SOURCE_DIR = \
$$PWD/android
deployment.files += Staff.db
deployment.path = /assets/db
INSTALLS += deployment
}
HEADERS += \
headers/contract.h \
headers/database.h \
headers/listmodel.h \
headers/salesman.h
contains(ANDROID_TARGET_ARCH,x86) {
ANDROID_PACKAGE_SOURCE_DIR = \
$$PWD/android
deployment.files += Staff.db
deployment.path = /assets/db
INSTALLS += deployment
}
}