|
67
|
1 |
#
|
|
|
2 |
# Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
3 |
# All rights reserved.
|
|
|
4 |
# This component and the accompanying materials are made available
|
|
|
5 |
# under the terms of "Eclipse Public License v1.0"
|
|
|
6 |
# which accompanies this distribution, and is available
|
|
|
7 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
|
8 |
#
|
|
|
9 |
# Initial Contributors:
|
|
|
10 |
# Nokia Corporation - initial contribution.
|
|
|
11 |
#
|
|
|
12 |
# Contributors:
|
|
|
13 |
#
|
|
|
14 |
# Description: This application is executed by the native installer
|
|
|
15 |
# after a new version of Jrt has been installed from
|
|
|
16 |
# .sisx package on top of older Jrt version (e.g. when
|
|
|
17 |
# updating Jrt 2.1 to Jrt 2.2 via IAD).
|
|
|
18 |
# This application restarts Java Captain so that new
|
|
|
19 |
# version of the Jrt dlls is taken into use.
|
|
|
20 |
# All running MIDlets exit when Java Captain closes.
|
|
|
21 |
#
|
|
|
22 |
|
|
|
23 |
TEMPLATE=app
|
|
|
24 |
TARGET=javafinishjrtinstall
|
|
|
25 |
CONFIG += omj no_icon stl
|
|
|
26 |
CONFIG -= qt
|
|
|
27 |
|
|
|
28 |
symbian {
|
|
|
29 |
TARGET.EPOCSTACKSIZE = 0x5000
|
|
|
30 |
TARGET.UID3 = 0x20031E4D
|
|
|
31 |
TARGET.CAPABILITY = PowerMgmt
|
|
|
32 |
|
|
|
33 |
SOURCES += ../src.s60/*.cpp
|
|
|
34 |
|
|
|
35 |
LIBS += -ljavautils -ljavacomms
|
|
|
36 |
}
|
|
|
37 |
|
|
|
38 |
include(../../../build/omj.pri)
|