-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeployment.pri
More file actions
57 lines (51 loc) · 1.4 KB
/
Copy pathdeployment.pri
File metadata and controls
57 lines (51 loc) · 1.4 KB
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
#unix:!android {
# isEmpty(target.path) {
# qnx {
# target.path = /tmp/$${TARGET}/bin
# } else {
# target.path = /opt/$${TARGET}/bin
# }
# export(target.path)
# }
# INSTALLS += target
#}
#export(INSTALLS)
android-no-sdk {
target.path = /data/user/qt
export(target.path)
INSTALLS += target
} else:android {
x86 {
target.path = /libs/x86
} else: armeabi-v7a {
target.path = /libs/armeabi-v7a
} else {
target.path = /libs/armeabi
}
export(target.path)
INSTALLS += target
#deployment.files += $files($PWD/html/*)
html.path = /assets/html/
html.files += ./GUI/html/home.htm
css.path = /assets/html/css
css.files += ./GUI/html/css/jquery.mobile-1.4.5.min.css
css.files += ./GUI/html/css/style.css
css.files += ./GUI/html/css/ajax-loader.gif
javascript.path = /assets/html/js
javascript.files += ./GUI/html/js/jquery-1.10.2.min.js
javascript.files += ./GUI/html/js/jquery.mobile-1.4.5.min.js
javascript.files += ./GUI/html/js/qwebchannel.js
javascript.files += ./GUI/html/js/home.js
INSTALLS += html css javascript
} else:unix {
isEmpty(target.path) {
qnx {
target.path = /tmp/$${TARGET}/bin
} else {
target.path = /opt/$${TARGET}/bin
}
export(target.path)
}
INSTALLS += target
}
export(INSTALLS)