clock/ftudatetimewizard/ftudatetimewizard.pro
branchGCC_SURGE
changeset 54 e6894b852bc6
parent 40 4b686cfad39d
parent 53 e08ac1a3ba2b
equal deleted inserted replaced
40:4b686cfad39d 54:e6894b852bc6
     1 #
       
     2 # Copyright (c) 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:  FTU datetime wizard project file
       
    15 #
       
    16 
       
    17 TEMPLATE      	= lib
       
    18 
       
    19 CONFIG       	+= plugin hb
       
    20 TARGET        	= ftudatetimewizard
       
    21 
       
    22 HEADERS += ./inc/*.h
       
    23 SOURCES += ./src/*.cpp
       
    24 
       
    25 RESOURCES += resources/ftudatetimewizard.qrc
       
    26 
       
    27 plugin.sources 	= ftudatetimewizard.dll
       
    28 plugin.path 	= \resource\qt\plugins\FTU
       
    29  
       
    30 pluginstub.sources = resource/*.manifest
       
    31 pluginstub.path = /fturesources/plugins/wizardproviders 
       
    32 
       
    33 DEPLOYMENT 	+= plugin pluginstub
       
    34 
       
    35 CONFIG(debug, debug|release) {
       
    36     DESTDIR = debug
       
    37     LIBS += -lftuwizardmodel
       
    38 } else {
       
    39     DESTDIR = release
       
    40     LIBS += -lftuwizardmodel
       
    41 }
       
    42 
       
    43 CONFIG += plugin debug_and_release
       
    44 
       
    45 QT += xml sql
       
    46 
       
    47 DEFINES += FTUDATETIMEWIZARD_LIB
       
    48 
       
    49 coverage:DEFINES += COVERAGE_MEASUREMENT
       
    50 
       
    51 DEPENDPATH +=   ./inc \
       
    52                 ./src
       
    53 
       
    54 INCLUDEPATH +=  ./inc/ \
       
    55 	  	../clockmw/clocksettingsutility/inc \
       
    56 	  	../clockmw/clocktimezone/inc \
       
    57 	  	../clockengines/inc \
       
    58 	  	../clockengines/clockserver/server/inc \
       
    59 	  	../clockui/clockcityselectionlist/inc \
       
    60 	    ../inc   
       
    61 symbian: {
       
    62     TARGET.UID3 = 0x2002C30C
       
    63     TARGET.EPOCALLOWDLLDATA=1
       
    64     TARGET.CAPABILITY = ALL -TCB
       
    65     TARGET.CAPABILITY = CAP_GENERAL_DLL
       
    66     INCLUDEPATH +=  $$MW_LAYER_SYSTEMINCLUDE
       
    67 	
       
    68 	LIBS += -leuser \
       
    69 			-lclocksettingsutility \
       
    70 			-lclockserverclient \
       
    71 			-ltimezoneclient \
       
    72 			-lxqsettingsmanager \
       
    73 			-lclockcityselectionlist
       
    74 
       
    75 }    
       
    76 
       
    77 # End of file	--Don't remove this.