59
|
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:gba project file
|
|
15 |
#
|
|
16 |
|
|
17 |
TEMPLATE = lib
|
|
18 |
|
|
19 |
QT -= gui
|
|
20 |
|
|
21 |
CONFIG += dll
|
|
22 |
|
|
23 |
DEFINES += BUILD_QTGBA_DLL
|
|
24 |
|
|
25 |
TARGET = gbautility
|
|
26 |
|
|
27 |
LIBS += -lgba2
|
|
28 |
|
|
29 |
MOC_DIR = .
|
|
30 |
|
|
31 |
INCLUDEPATH += . \
|
|
32 |
$$MW_LAYER_SYSTEMINCLUDE
|
|
33 |
|
|
34 |
DEPENDPATH += $$INCLUDEPATH
|
|
35 |
|
|
36 |
HEADERS += gbautility_qt.h \
|
|
37 |
gbauilityexport.h \
|
|
38 |
gbautilitybody.h
|
|
39 |
|
|
40 |
SOURCES += gbautility_qt.cpp \
|
|
41 |
gbautilitybody.cpp
|
|
42 |
|
|
43 |
#Symbian specific definitions
|
|
44 |
DEFINES += SYMBIAN
|
|
45 |
TARGET.UID2 = 0x10009D8D
|
|
46 |
TARGET.UID3 = 0x20031E53
|
|
47 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
48 |
TARGET.CAPABILITY = CAP_CLIENT_DLL
|
|
49 |
|
|
50 |
SYMBIAN_PLATFORMS = DEFAULT
|
|
51 |
|
|
52 |
|
|
53 |
symbian*: {
|
|
54 |
MMP_RULES -= "OPTION_REPLACE ARMCC --export_all_vtbl -D__QT_NOEFFECTMACRO_DONOTUSE"
|
|
55 |
}
|
|
56 |
|