-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilelist.pro
49 lines (35 loc) · 1 KB
/
filelist.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
# Copyright (c) 2011-2014 Microsoft Mobile.
QT += core gui declarative
CONFIG += mobility qt-components
MOBILITY += systeminfo
TARGET = filelist
VERSION = 1.1
HEADERS += \
src/filehelper.h
SOURCES += \
src/main.cpp \
src/filehelper.cpp
RESOURCES += rsc/common.qrc
symbian {
TARGET = FileListQML
TARGET.UID3 = 0xE63A97B4
TARGET.EPOCSTACKSIZE = 0x14000
TARGET.EPOCHEAPSIZE = 0x1000 0x1800000 # 24MB
LIBS += -lPlatformEnv -lefsrv
OTHER_FILES += \
qml/symbian/*.qml \
qml/symbian/SymbianUIConstants.js
qmlfiles.sources = qml
DEPLOYMENT += qmlfiles
ICON = icons/filelist.svg
}
simulator {
OTHER_FILES += \
qml/symbian/*.qml \
qml/symbian/SymbianUIConstants.js
# Modify the following path if necessary
SHADOW_BLD_PATH = ..\\filelist-build-simulator-Simulator_Qt_for_MinGW_4_4__Qt_SDK__Debug
system(mkdir $${SHADOW_BLD_PATH}\\qml\\symbian)
system(copy qml\\symbian\\*.* $${SHADOW_BLD_PATH}\\qml\\symbian)
}
# End of file.