equal
deleted
inserted
replaced
|
1 # |
|
2 # Copyright (c) 2009 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 TEMPLATE = app |
|
18 TARGET = hsactivitydbserver |
|
19 |
|
20 QT += core \ |
|
21 gui \ |
|
22 sql |
|
23 |
|
24 HEADERS += ../inc/hsactivitydbclientinterface.h \ |
|
25 inc/hsactivity.h \ |
|
26 inc/hsactivityserver.h \ |
|
27 inc/hsactivitystorage.h \ |
|
28 inc/hsactivitystorage_p.h |
|
29 |
|
30 SOURCES += src/hsactivityserver.cpp \ |
|
31 src/hsactivitystorage.cpp \ |
|
32 src/hsactivitystorage_p.cpp |
|
33 |
|
34 symbian{ |
|
35 TARGET.UID3 = 0x200267B4 |
|
36 HEADERS += ../s60/inc/hsactivityglobals.h \ |
|
37 ../s60/inc/hsserializer.h \ |
|
38 s60/inc/hsactivityserver_p.h \ |
|
39 s60/inc/hsactivitysession_p.h |
|
40 |
|
41 |
|
42 SOURCES += s60/src/main.cpp \ |
|
43 ../s60/src/hsserializer.cpp \ |
|
44 s60/src/hsactivityserver_p.cpp \ |
|
45 s60/src/hsactivitysession_p.cpp |
|
46 |
|
47 TARGET.CAPABILITY = ALL -TCB |
|
48 } |
|
49 |