49
|
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:
|
|
15 |
#
|
|
16 |
|
|
17 |
|
|
18 |
TEMPLATE = lib
|
|
19 |
TARGET = drmbrowserlauncher
|
|
20 |
|
|
21 |
symbian:
|
|
22 |
{
|
|
23 |
TARGET.UID1 = 0x1000008D
|
|
24 |
TARGET.UID3 = 0x200315BC
|
|
25 |
|
|
26 |
TARGET.CAPABILITY = CAP_GENERAL_DLL
|
|
27 |
TARGET.VID = VID_DEFAULT
|
|
28 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
29 |
|
|
30 |
defBlock = \
|
|
31 |
"$${LITERAL_HASH}if defined(ARMCC)" \
|
|
32 |
"DEFFILE ./eabi/" \
|
|
33 |
"$${LITERAL_HASH}elif defined( WINSCW )" \
|
|
34 |
"DEFFILE ./bwinscw/" \
|
|
35 |
"$${LITERAL_HASH}elif defined( WINS )" \
|
|
36 |
"DEFFILE ./bwins/" \
|
|
37 |
"$${LITERAL_HASH}else" \
|
|
38 |
"DEFFILE ./bmarm/" \
|
|
39 |
"$${LITERAL_HASH}endif"
|
|
40 |
|
|
41 |
MMP_RULES += defBlock
|
|
42 |
|
|
43 |
MMP_RULES -= "OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl"
|
|
44 |
}
|
|
45 |
|
|
46 |
DEPENDPATH += .
|
|
47 |
DEPENDPATH += ./src
|
|
48 |
|
|
49 |
INCLUDEPATH += ../../inc
|
|
50 |
|
|
51 |
SOURCES += drmbrowserlauncher.cpp
|
|
52 |
|