clock/clockmw/clocktimezone/clocktimezone.pro
changeset 18 c198609911f9
child 26 a949c2543c15
equal deleted inserted replaced
0:f979ecb2b13e 18:c198609911f9
       
     1 #
       
     2 # Copyright (c) 2008-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 # Project definition file for TimezoneClient
       
    16 # 
       
    17 
       
    18 TEMPLATE = lib
       
    19 TARGET = timezoneclient
       
    20 DEFINES += TIMEZONECLIENT_LIBRARY
       
    21 
       
    22 INCLUDEPATH += ../../inc \
       
    23 			   ../../data/timezonedata \
       
    24 			   ../../clockengines/inc \
       
    25 			   ../../clockengines/clockserver/client/inc
       
    26 DEPENDPATH += . \
       
    27 			  ../../inc \
       
    28 			  ./inc \
       
    29 			  ./src \
       
    30 			  ../../data/timezonedata \
       
    31 			  ../../clockengines/inc \
       
    32 			  ../../clockengines/clockserver/client/inc
       
    33 
       
    34 symbian: {
       
    35 	TARGET.EPOCALLOWDLLDATA = 1
       
    36 	TARGET.CAPABILITY = CAP_GENERAL_DLL
       
    37 	TARGET.UID3 = 0x2002DD0F
       
    38 	INCLUDEPATH += /epoc32/include
       
    39 
       
    40 	LIBS += -leuser \
       
    41 			-lbafl \
       
    42 			-ltimezonelocalization \
       
    43 			-ltzclient \
       
    44 			-lclockserverclient
       
    45 
       
    46 	BLD_INF_RULES.prj_exports += \
       
    47 		"../../data/timezonedata/timezonelocalization.loc	APP_LAYER_LOC_EXPORT_PATH(timezonelocalization.loc)" \
       
    48 		"../../data/timezonedata/tzdb.dbz					/epoc32/release/wins/udeb/z/private/1020383E/tzdb.dbz" \
       
    49 		"../../data/timezonedata/tzdb.dbz					/epoc32/release/wins/urel/z/private/1020383E/tzdb.dbz" \
       
    50 		"../../data/timezonedata/tzdb.dbz					/epoc32/release/winscw/urel/z/private/1020383E/tzdb.dbz" \
       
    51 		"../../data/timezonedata/tzdb.dbz					/epoc32/release/winscw/udeb/z/private/1020383E/tzdb.dbz" \
       
    52 		"../../data/timezonedata/tzdb.dbz					/epoc32/release/thumb/udeb/z/private/1020383E/tzdb.dbz" \
       
    53 		"../../data/timezonedata/tzdb.dbz					/epoc32/release/thumb/urel/z/private/1020383E/tzdb.dbz" \
       
    54 		"../../data/timezonedata/tzdb.dbz					/epoc32/data/z/private/1020383E/tzdb.dbz"
       
    55 
       
    56 	# MMP rule
       
    57 	timezonegroupsrule = \
       
    58 		"SOURCEPATH ."\
       
    59 		"$${LITERAL_HASH}include <data_caging_paths.hrh>" \
       
    60 		"START RESOURCE ../../data/timezonedata/timezonegroups.rss" \
       
    61 		"HEADER" \
       
    62 		"TARGETPATH /resource/timezonelocalization" \
       
    63 		"LANG SC 01 02" \
       
    64 		"END"
       
    65 		
       
    66 	timezonegroupsjerusalemrule = \
       
    67 		"START RESOURCE ../../data/timezonedata/timezonegroups_jerusalem.rss" \
       
    68 		"HEADER" \
       
    69 		"TARGETPATH /resource/timezonelocalization" \
       
    70 		"LANG SC 01 02" \
       
    71 		"END" \
       
    72 
       
    73 	timezonetelavivrule = \
       
    74 		"START RESOURCE ../../data/timezonedata/timezones_tel_aviv.rss" \
       
    75 		"HEADER" \
       
    76 		"TARGETPATH /resource/timezonelocalization" \
       
    77 		"LANG SC 01 02" \
       
    78 		"END" \
       
    79 
       
    80 	timezonesrule = \
       
    81 		"START RESOURCE ../../data/timezonedata/timezones.rss" \
       
    82 		"HEADER" \
       
    83 		"TARGETPATH /resource/timezonelocalization" \
       
    84 		"LANG SC 01 02" \
       
    85 		"END"
       
    86 	
       
    87 	mccrule = \
       
    88 		"START RESOURCE ../../data/timezonedata/mcc.rss" \
       
    89 		"HEADER" \
       
    90 		"TARGETPATH /resource/mcc" \
       
    91 		"END"
       
    92 
       
    93 	MMP_RULES += timezonegroupsrule \
       
    94 				 timezonegroupsjerusalemrule \
       
    95 				 timezonetelavivrule \
       
    96 				 timezonesrule \
       
    97 				 mccrule
       
    98 }
       
    99 
       
   100 SOURCES += timezoneclient.cpp \
       
   101 		   debug.cpp
       
   102 HEADERS += timezoneclient.h \
       
   103 		   debug.h
       
   104 
       
   105 # End of file	--Don't remove this.