16
|
1 |
// Copyright (c) 2010 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 |
// Project file for the Guest OpenGL ES 1.1 implementation
|
|
15 |
|
|
16 |
#include <platform_paths.hrh>
|
|
17 |
#include <GLES/openglesuids.hrh> // For uids
|
|
18 |
|
|
19 |
target guestopengles11.dll // Destination filename
|
|
20 |
targettype dll // Binary build type
|
|
21 |
linkas libGLESv1_CM.dll
|
|
22 |
uid KUidSharedDllUidValue KUidOpenGLESv1CommonProfileDllUidValue // File uids
|
|
23 |
capability CAP_GENERAL_DLL
|
|
24 |
vendorid VID_DEFAULT //Nokia vendor id
|
|
25 |
|
|
26 |
OS_LAYER_ESTLIB_SYSTEMINCLUDE
|
|
27 |
|
|
28 |
systeminclude /epoc32/include // General Symbian include files
|
|
29 |
userinclude ../inc // Local include files
|
|
30 |
userinclude ../../vghwutils/inc // Local include files
|
|
31 |
|
|
32 |
USERINCLUDE ../../vghwserialiser/inc
|
|
33 |
SOURCEPATH ../../vghwserialiser/src // Relative path to source files
|
|
34 |
SOURCE opengles11rfc.cpp
|
|
35 |
|
|
36 |
sourcepath ../src // Relative path to source files
|
|
37 |
source opengl.cpp
|
|
38 |
|
|
39 |
library euser.lib // Mandatory
|
|
40 |
library vghwutils.lib
|
|
41 |
library guestvideohwapi.lib
|
|
42 |
library vghwserialiser.lib
|
|
43 |
LIBRARY libc.lib // For strcmp, etc
|
|
44 |
|
|
45 |
// standard ARM def file baseline for all implementions
|
|
46 |
DEFFILE /epoc32/include/def/eabi/libglesv1_cm11.def
|
|
47 |
|
|
48 |
EPOCALLOWDLLDATA
|