31
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
// All rights reserved.
|
|
3 |
// This component and the accompanying materials are made available
|
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
|
5 |
// which accompanies this distribution, and is available
|
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
// Obex running over Bluetooth and IrDA
|
|
15 |
// MODIFIED FROM BTIROBEX.MMP FOR BT/IR OBEX STUB
|
|
16 |
// oscarg, September 2003
|
|
17 |
// OPTION CW -w off
|
|
18 |
//
|
|
19 |
//
|
|
20 |
|
|
21 |
// NB: For BC this must be called irobex.dll even though it uses Bluetooth and IrDA
|
|
22 |
TARGET irobex.dll
|
|
23 |
TARGETTYPE dll
|
|
24 |
|
|
25 |
CAPABILITY All -TCB
|
|
26 |
|
|
27 |
// The UID2 here is for a shared library (statically linked DLL)
|
|
28 |
// Need to change UID3 because of this
|
|
29 |
UID 0x1000008d 0x10003d57
|
|
30 |
VENDORID 0x70000001
|
|
31 |
|
|
32 |
|
|
33 |
#ifdef WINS
|
|
34 |
|
|
35 |
//this code builds against the binary interface of irobex
|
|
36 |
//for it to build successfully,
|
|
37 |
//the relative path to master/common/generic/infra-red/.... must be changed to match your
|
|
38 |
//respective perforce client spec. setting
|
|
39 |
|
|
40 |
DEFFILE ../../../../../../../../../master/common/generic/infra-red/irda/bwins/irobex2.def
|
|
41 |
//DEFFILE ../../../../../../../infra-red/irda/bwins/irobex2.def
|
|
42 |
|
|
43 |
#else
|
|
44 |
|
|
45 |
DEFFILE ../../../../../../../../../master/common/generic/infra-red/irda/bmarm/irobex2.def
|
|
46 |
|
|
47 |
#endif
|
|
48 |
|
|
49 |
// Source files modified by the stub
|
|
50 |
SOURCEPATH ../irobex
|
|
51 |
SOURCE obex.cpp
|
|
52 |
SOURCE obex_client.cpp
|
|
53 |
SOURCE obex_server.cpp
|
|
54 |
|
|
55 |
// Source files for exsiting irobex.dll
|
|
56 |
SOURCEPATH ../../../../../../../../../master/common/generic/infra-red/irda/irobex
|
|
57 |
SOURCE obexobjectexpandedbaseobject.cpp
|
|
58 |
SOURCE obexheader.cpp
|
|
59 |
SOURCE obexheaderset.cpp
|
|
60 |
SOURCE obexconstants.cpp
|
|
61 |
SOURCE obexheaderutil.cpp
|
|
62 |
SOURCE obexobjects.cpp
|
|
63 |
SOURCE obexasyncfilewriter.cpp
|
|
64 |
SOURCE obexsyncfilewriter.cpp
|
|
65 |
SOURCE trans.cpp
|
|
66 |
SOURCE irdattp.cpp
|
|
67 |
SOURCE sockconn.cpp
|
|
68 |
SOURCE obexutil.cpp
|
|
69 |
SOURCE authentication.cpp
|
|
70 |
SOURCE rfcomm.cpp
|
|
71 |
SOURCE usbconn.cpp
|
|
72 |
|
|
73 |
// Source files for the obex header utils class, used by the stub and t_obexmtm test harness
|
|
74 |
SOURCEPATH ../../../testutils/headerutils/src
|
|
75 |
SOURCE cobextestbaseheaderlist.cpp
|
|
76 |
SOURCE cobextestheaderlist.cpp
|
|
77 |
|
|
78 |
|
|
79 |
USERINCLUDE ../../../../../../../../../master/common/generic/infra-red/irda/irobex
|
|
80 |
USERINCLUDE ../../../../../../../../../master/common/generic/infra-red/irda/inc
|
|
81 |
USERINCLUDE ../../../inc
|
|
82 |
USERINCLUDE ../../../testutils/msgth/inc
|
|
83 |
USERINCLUDE ../../../testutils/headerutils/inc
|
|
84 |
|
|
85 |
SYSTEMINCLUDE /epoc32/include
|
|
86 |
|
|
87 |
LIBRARY euser.lib
|
|
88 |
LIBRARY efsrv.lib
|
|
89 |
LIBRARY esock.lib
|
|
90 |
LIBRARY hash.lib
|
|
91 |
LIBRARY charconv.lib
|
|
92 |
LIBRARY irda.lib
|
|
93 |
LIBRARY Estor.lib
|
|
94 |
|
|
95 |
DEBUGLIBRARY flogger.lib
|
|
96 |
|
|
97 |
START WINS
|
|
98 |
BASEADDRESS 0x73900000
|
|
99 |
END
|
|
100 |
|
|
101 |
//MACRO TRANSPORT_BLUETOOTH
|
|
102 |
MACRO TRANSPORT_IRDA
|
|
103 |
|
|
104 |
SMPSAFE
|