|
1 /* |
|
2 * Copyright (c) 2005 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: Presence Server aka transaction server |
|
15 * Handles clients request to publish data to network. |
|
16 * |
|
17 */ |
|
18 |
|
19 // To get the APP_LAYER_SYSTEMINCLUDE-definition |
|
20 #include <platform_paths.hrh> |
|
21 |
|
22 TARGET PEngServer2.exe |
|
23 TARGETTYPE exe |
|
24 |
|
25 UID 0 |
|
26 VENDORID VID_DEFAULT |
|
27 CAPABILITY CAP_SERVER |
|
28 TARGETPATH /system/Libs |
|
29 |
|
30 |
|
31 SOURCEPATH ../ServerSrc |
|
32 |
|
33 // Session manager |
|
34 SOURCE CPEngCSPSessManager.cpp |
|
35 SOURCE CPEngAppAccessContainer.cpp |
|
36 |
|
37 // Request Handlers |
|
38 SOURCE CPEngHandlerLogIn.cpp |
|
39 SOURCE CPEngHandlerLogOff.cpp |
|
40 SOURCE CPEngHandlerSendData.cpp |
|
41 SOURCE CPEngOutGoingTransContainer.cpp // container for outgoing transaction |
|
42 SOURCE CPEngIncomingDataHandler.cpp |
|
43 |
|
44 // Server core |
|
45 SOURCE CPEngServer.cpp |
|
46 SOURCE CPEngSession.cpp |
|
47 SOURCE CPEngSubSession.cpp |
|
48 |
|
49 // Server entry point |
|
50 SOURCE ServerEntryPoint.cpp |
|
51 |
|
52 USERINCLUDE ../ServerSrc |
|
53 USERINCLUDE ../ServerInc |
|
54 USERINCLUDE ../Tools |
|
55 |
|
56 // Presence Engine includes |
|
57 USERINCLUDE ../../AttributeLibrary2/Inc |
|
58 USERINCLUDE ../../ListLibrary2/Inc |
|
59 USERINCLUDE ../../TransferAdapter2/Inc |
|
60 USERINCLUDE ../../TransactionFramework2/Inc |
|
61 USERINCLUDE ../../PluginServer2/ClntInc |
|
62 USERINCLUDE ../../CoreUtilsLib2/Inc |
|
63 USERINCLUDE ../../CoreUtilsLib2/SrvInc |
|
64 USERINCLUDE ../../StorageManager2/ClientInc |
|
65 |
|
66 USERINCLUDE ../../IncApi |
|
67 USERINCLUDE ../../IncPresenceModel |
|
68 USERINCLUDE ../../Group |
|
69 |
|
70 // System include |
|
71 // Default system include paths for application layer modules. |
|
72 APP_LAYER_SYSTEMINCLUDE |
|
73 //Relative system include for groupcommunications/inc |
|
74 SYSTEMINCLUDE ../../../inc |
|
75 |
|
76 // Symbian dependences |
|
77 LIBRARY euser.lib // User classes |
|
78 LIBRARY bafl.lib // Descriptor arrays |
|
79 |
|
80 // Presence Engine dependences |
|
81 LIBRARY PEngListLib2.lib // Presence list library |
|
82 LIBRARY PEngAttrLib2.lib // Presence attribute library |
|
83 LIBRARY PEngTraAdap2.lib // Transfed adapter library |
|
84 LIBRARY PEngStorMan2.lib // Storage manager |
|
85 LIBRARY PEngCoreUtilsLib2.lib // General PEC Engine utils |
|
86 LIBRARY ecom.lib |
|
87 |
|
88 #ifdef EABI |
|
89 LIBRARY commsfw.lib |
|
90 #endif |
|
91 |
|
92 |
|
93 // End of File |