www.pudn.com > UIQ_Code1.rar > Commands.mmp


// commands.mmp 
// 
// © Symbian Software Ltd 2005. All rights reserved. 
// 
// For more information see the "MMP file syntax" section in the SDK 
// documentation. 
 
// Specify the file generated by the project 
TARGET			Commands.exe 
// UID1 - System level identifier. 
TARGETTYPE		EXE 
 
// UID specify UID2 and UID3 for the project. 
// UID2 - Can be thought of as an interface identifier. 
// UID3 - Can be thought of as a project identifier. 
// For more information about UID see "How to use UIDs" section  
// in the SDK documentation.  
// The UID3 is also specified in Commands_reg.rss, CommandsExternalInterface.h 
// and the .pkg files. 
UID				0x100039CE 0xE0001003 
 
// Specifies how a resource file should be compiled 
// LANG - Indicate languages code for the project. 
// The default language code is SC. 
SOURCEPATH		..\Rsc  
START RESOURCE	Commands.rss 
HEADER 
TARGETPATH		\Resource\Apps 
LANG			SC 
END 
 
// Application must provide a registration file, which gives  
// non-localisable information.  
// TARGETPATH - All registration files in the system shall be located in the 
// same path, this due to security reasons. 
SOURCEPATH		..\Reg 
START RESOURCE	Commands_reg.rss 
TARGETPATH		\private\10003a3f\apps 
END 
 
// This file defines the application's captions and the name of the icon file 
START RESOURCE	Commands_loc.rss 
TARGETPATH		\Resource\Apps 
LANG			SC 
END 
 
SOURCEPATH		..\SRC 
USERINCLUDE		..\INC 
SOURCE			CommandsApplication.cpp 
SOURCE			CommandsDocument.cpp 
SOURCE			CommandsAppUi.cpp 
SOURCE			CommandsView.cpp 
SOURCE			CommandsViewModel.cpp 
SOURCE			CommandsHandlerPage2.cpp 
SOURCE			CommandsHandlerPage3.cpp 
SOURCE			CommandsHandlerPage4.cpp 
 
SYSTEMINCLUDE	\EPOC32\INCLUDE 
 
// Specifies import libraries 
LIBRARY			euser.lib  
LIBRARY			apparc.lib  
LIBRARY			cone.lib  
LIBRARY			eikcore.lib  
LIBRARY			eikcoctl.lib  
LIBRARY			qikcore.lib  
LIBRARY			quiconfigclient.lib 
LIBRARY			qikutils.lib 
 
// New heap allocator, which is more effective in out of memory situations. 
// You only need to include the libs in the mmp file to use the new heap allocator. 
STATICLIBRARY 	qikalloc.lib 
LIBRARY			qikallocdll.lib 
 
// Specifies how to compile bitmap (.bmp) files into a Symbian OS  
// format multi-bitmap (.mbm) file.  
// For more information about icons see "Defining application icons, captions  
// and properties" section in the SDK documentation.  
START BITMAP	CommandsAppIcon.mbm 
HEADER 
TARGETPATH		\Resource\Apps 
SOURCEPATH		..\Data\AppIcon 
// Source Color-depth Source-bitmap-list 
// c denotes whether the bitmap is a colour bitmap and the digits represent the 
// colour-depth of the bitmap and the bitmap mask respectively 
SOURCE	c24		Commands_Small.bmp 
SOURCE	8		Commands_Small_mask.bmp 
SOURCE	c24		Commands_Large.bmp 
SOURCE	8		Commands_Large_mask.bmp 
SOURCE	c24		Commands_xLarge.bmp 
SOURCE	8		Commands_xLarge_mask.bmp 
END 
 
// This section has bitmaps for page tab icon and buttons. 
START BITMAP	Commands.mbm 
HEADER 
TARGETPATH		\Resource\Apps 
SOURCEPATH		..\Data\Image 
SOURCE	c24		PageTab.bmp 
SOURCE	8		PageTab_mask.bmp 
SOURCE	c24		TypeDelete.bmp 
SOURCE	8		TypeDelete_mask.bmp 
SOURCE	c24		TypeDone.bmp 
SOURCE	8		TypeDone_mask.bmp 
SOURCE	c24		TypeItem.bmp 
SOURCE	8		TypeItem_mask.bmp 
SOURCE	c24		TypeNo.bmp 
SOURCE	8		TypeNo_mask.bmp 
SOURCE	c24		TypePrefer.bmp 
SOURCE	8		TypePrefer_mask.bmp 
SOURCE	c24		TypeYes.bmp 
SOURCE	8		TypeYes_mask.bmp 
END