blob: f386df801cef597f6e27c00ef7c0ad653d683e48 (
plain)
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
|
#for now we do not actually have anything to build
#just ensure installation of public headers
TEMPLATE = subdirs
include(../../common.pri)
PUBLIC_HEADERS += qmobilityglobal.h \
qlatin1constant.h \
qmalgorithms.h
headers.files = $$PUBLIC_HEADERS
headers.path = $$QT_MOBILITY_INCLUDE/QtMobility
INSTALLS+= headers
symbian {
path=$$MW_LAYER_PUBLIC_EXPORT_PATH("")
exportPath=$$EPOCROOT"."$$dirname(path)
nativePath=$$replace(exportPath,/,\\)
exists($$nativePath) {
} else {
system($$QMAKE_MKDIR $$nativePath)
}
for(header, headers.files) {
BLD_INF_RULES.prj_exports += "$$header $$MW_LAYER_PUBLIC_EXPORT_PATH($$basename(header))"
}
}
|