equal
deleted
inserted
replaced
|
1 // debugRouter.mmp |
|
2 // |
|
3 // Copyright (c) 2007 - 2010 Accenture. All rights reserved. |
|
4 // This component and the accompanying materials are made available |
|
5 // under the terms of the "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 // Accenture - Initial contribution |
|
11 // |
|
12 |
|
13 #include <fshell/common.mmh> |
|
14 #include <kernel/kern_ext.mmh> |
|
15 |
|
16 target clogger-debugrouter.ldd |
|
17 //targettype ldd |
|
18 targettype kext |
|
19 |
|
20 uid 0x100000af FSHELL_UID_CLOGGERDEBUGROUTER |
|
21 |
|
22 capability all |
|
23 |
|
24 userinclude . |
|
25 |
|
26 sourcepath . |
|
27 source debugrouter.cpp |
|
28 source dobject_compat.cpp |
|
29 source patchables.cpp |
|
30 |
|
31 library ekern.lib |
|
32 nostrictdef |
|
33 #ifdef FSHELL_PATCHABLE_CONSTANTS_SUPPORT |
|
34 deffile ..\~\debugrouter.def |
|
35 #else |
|
36 deffile ..\~\debugrouter_nopatchdata.def |
|
37 #endif |
|
38 |
|
39 epocallowdlldata |
|
40 |
|
41 start wins |
|
42 win32_headers |
|
43 end |
|
44 |
|
45 #ifdef SMP |
|
46 // This isn't actually used for anything, but it's recommended, to indicate the driver has had some level of SMP safely analysis done (which this has) |
|
47 smpsafe |
|
48 #endif |
|
49 |
|
50 // End of file |