0
+ − 1
// Copyright (c) 2007-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 the License "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
// e32/euser/bld.inf
+ − 15
// User Library
+ − 16
//
+ − 17
//
+ − 18
+ − 19
/**
+ − 20
@file
+ − 21
*/
+ − 22
+ − 23
+ − 24
PRJ_PLATFORMS
+ − 25
+ − 26
BASEDEFAULT
+ − 27
+ − 28
PRJ_EXPORTS
+ − 29
+ − 30
+ − 31
PRJ_MMPFILES
+ − 32
#if defined(GENERIC_MARM) || defined(WINS) || defined(GENERIC_X86)
+ − 33
+ − 34
#if defined(GENERIC_MARM) && !defined(ARMCC)
+ − 35
epoc/egcc
+ − 36
#endif
+ − 37
+ − 38
epoc/edllstub
+ − 39
edll
+ − 40
eexe
+ − 41
eexe_instrumented_heap
+ − 42
eexe_monitor_heap
+ − 43
+ − 44
#ifdef WINS
+ − 45
#ifndef SMP // NO SMP EMULATOR
+ − 46
estub
+ − 47
epoc
+ − 48
emulator
+ − 49
scppnwdl
+ − 50
scppnwdl_kern
+ − 51
#endif
+ − 52
#endif
+ − 53
+ − 54
#if !defined(MARM_THUMB) && !defined(MARM_ARMI)
+ − 55
+ − 56
#if !defined(SMP)
+ − 57
euser_lib
+ − 58
rpipe
+ − 59
#endif
+ − 60
+ − 61
#if defined(GENERIC_MARM)
+ − 62
#if defined(SMP)
+ − 63
euser_v6k_smp
+ − 64
euser_v7_smp
+ − 65
#else
+ − 66
#if defined(MARM_ARM4) || defined(MARM_ARMV4)
+ − 67
euser_v4
+ − 68
#endif
+ − 69
euser_v5
+ − 70
euser_v6
+ − 71
euser_v6k
+ − 72
#endif
+ − 73
#elif defined(EPOC32) && !defined(MARM)
+ − 74
euser
+ − 75
#elif !defined(EPOC32)
+ − 76
euser
+ − 77
#endif
+ − 78
+ − 79
#if defined(GENERIC_MARM) && !defined(ARMCC)
+ − 80
#ifndef SMP
+ − 81
epoc/arm/eka1_entry_stub
+ − 82
#endif
+ − 83
#endif
+ − 84
+ − 85
#endif // #if !defined(MARM_THUMB) && !defined(MARM_ARMI)
+ − 86
#endif // #if defined(GENERIC_MARM) || defined(WINS) || defined(GENERIC_X86)
+ − 87
+ − 88