sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <platform_paths.hrh>
|
sl@0
|
21 |
|
sl@0
|
22 |
TARGET dbus-monitor.exe
|
sl@0
|
23 |
TARGETTYPE exe
|
sl@0
|
24 |
CAPABILITY NetworkServices
|
sl@0
|
25 |
UID 0x100039CE 0x09F51D38
|
sl@0
|
26 |
|
sl@0
|
27 |
EPOCHEAPSIZE 4 67108864 // min. 4B max 64MB
|
sl@0
|
28 |
|
sl@0
|
29 |
// Macros
|
sl@0
|
30 |
MACRO SYMBIAN
|
sl@0
|
31 |
MACRO HAVE_CONFIG_H
|
sl@0
|
32 |
//MACRO DBUS_BUILD_TESTS //To enable tests uncomment this line
|
sl@0
|
33 |
MACRO _DEBUG //To enable debug and verbose mode
|
sl@0
|
34 |
MACRO TODO
|
sl@0
|
35 |
|
sl@0
|
36 |
//START RESOURCE dbus-daemon_reg.rss
|
sl@0
|
37 |
//#ifdef WINSCW
|
sl@0
|
38 |
//TARGETPATH /private/10003a3f/apps
|
sl@0
|
39 |
//#else
|
sl@0
|
40 |
//TARGETPATH /private/10003a3f/import/apps
|
sl@0
|
41 |
//#endif
|
sl@0
|
42 |
//END //RESOURCE
|
sl@0
|
43 |
|
sl@0
|
44 |
SOURCEPATH ../tools
|
sl@0
|
45 |
|
sl@0
|
46 |
|
sl@0
|
47 |
// Source files
|
sl@0
|
48 |
SOURCE dbus-monitor.c
|
sl@0
|
49 |
SOURCE dbus-print-message.c
|
sl@0
|
50 |
|
sl@0
|
51 |
// User include paths
|
sl@0
|
52 |
USERINCLUDE ../../bus ../../dbus ..
|
sl@0
|
53 |
|
sl@0
|
54 |
// System include paths
|
sl@0
|
55 |
|
sl@0
|
56 |
|
sl@0
|
57 |
|
sl@0
|
58 |
OS_LAYER_SYSTEMINCLUDE
|
sl@0
|
59 |
OS_LAYER_LIBC_SYSTEMINCLUDE
|
sl@0
|
60 |
OS_LAYER_DBUS_SYSTEMINCLUDE
|
sl@0
|
61 |
|
sl@0
|
62 |
// Library dependencies
|
sl@0
|
63 |
#ifdef GCCE
|
sl@0
|
64 |
STATICLIBRARY libcrt0_gcce.lib
|
sl@0
|
65 |
#else
|
sl@0
|
66 |
STATICLIBRARY libcrt0.lib
|
sl@0
|
67 |
#endif
|
sl@0
|
68 |
LIBRARY libc.lib
|
sl@0
|
69 |
LIBRARY euser.lib // Needed in order to use Symbian services
|
sl@0
|
70 |
|
sl@0
|
71 |
LIBRARY libm.lib
|
sl@0
|
72 |
LIBRARY libpthread.lib
|
sl@0
|
73 |
LIBRARY libdbus.lib
|
sl@0
|
74 |
//LIBRARY libxml2.lib
|
sl@0
|
75 |
|
sl@0
|
76 |
|
sl@0
|
77 |
SMPSAFE
|