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 #include <platform_paths.hrh> |
|
18 |
|
19 target CdlCompiler.EXE |
|
20 targettype EXE |
|
21 |
|
22 MW_LAYER_SYSTEMINCLUDE |
|
23 |
|
24 sourcepath ../src |
|
25 |
|
26 source CdlCompiler.cpp |
|
27 |
|
28 option MSVC /GX /W3 |
|
29 |
|
30 #ifndef SBSV2 |
|
31 start CW32 |
|
32 win32_library /epoc32/release/cwtools/rel/CdlCompilerToolkit.lib |
|
33 end |
|
34 |
|
35 start VC32 |
|
36 win32_library /epoc32/release/tools/rel/CdlCompilerToolkit.lib |
|
37 end |
|
38 #else |
|
39 START TOOLS |
|
40 #if defined(CW32) |
|
41 win32_library /epoc32/release/cwtools/rel/CdlCompilerToolkit.lib |
|
42 #elif defined(VC32) |
|
43 win32_library /epoc32/release/tools/rel/CdlCompilerToolkit.lib |
|
44 #endif |
|
45 END |
|
46 #endif |
|
47 |
|
48 // End of File |