0
|
1 |
/* Copyright (c) 2005 - 2008 Nokia Corporation
|
|
2 |
*
|
|
3 |
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
4 |
* you may not use this file except in compliance with the License.
|
|
5 |
* You may obtain a copy of the License at
|
|
6 |
*
|
|
7 |
* http://www.apache.org/licenses/LICENSE-2.0
|
|
8 |
*
|
|
9 |
* Unless required by applicable law or agreed to in writing, software
|
|
10 |
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
11 |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12 |
* See the License for the specific language governing permissions and
|
|
13 |
* limitations under the License.
|
|
14 |
*/
|
|
15 |
targettype dll
|
|
16 |
TARGET ${{PREFIX}}gles.pyd
|
|
17 |
|
|
18 |
|
|
19 |
#include "../../common.mmp"
|
|
20 |
|
|
21 |
CAPABILITY ${{DLL_CAPABILITIES}}
|
|
22 |
${{COMPILER_FLAGS}}
|
|
23 |
|
|
24 |
SYSTEMINCLUDE \epoc32\include\python25
|
|
25 |
SYSTEMINCLUDE \epoc32\include\stdapis
|
|
26 |
SYSTEMINCLUDE \epoc32\include
|
|
27 |
|
|
28 |
|
|
29 |
USERINCLUDE ..\inc
|
|
30 |
|
|
31 |
|
|
32 |
LIBRARY python25.lib
|
|
33 |
LIBRARY euser.lib
|
|
34 |
LIBRARY eikcore.lib
|
|
35 |
LIBRARY cone.lib
|
|
36 |
LIBRARY etext.lib
|
|
37 |
LIBRARY msgs.lib
|
|
38 |
LIBRARY platformenv.lib
|
|
39 |
LIBRARY fbscli.lib
|
|
40 |
LIBRARY estlib.lib
|
|
41 |
LIBRARY libgles_cm.lib
|
|
42 |
LIBRARY ws32.lib
|
|
43 |
LIBRARY bitgdi.lib
|
|
44 |
|
|
45 |
SOURCEPATH ..\src
|
|
46 |
|
|
47 |
SOURCE gles_util.cpp glesmodule.cpp
|
|
48 |
|
|
49 |
|
|
50 |
#if defined(ARMCC)
|
|
51 |
deffile eabi\gles
|
|
52 |
#elif defined(WINSCW)
|
|
53 |
deffile bwins\gles
|
|
54 |
#endif
|