taskswitcher/testapplications/tstestpluginmanager/fakeplugin/fakeplugin.pro
changeset 117 c63ee96dbe5f
equal deleted inserted replaced
115:3ab5c078b490 117:c63ee96dbe5f
       
     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: 
       
    15 #
       
    16 
       
    17 TEMPLATE = lib
       
    18 TARGET = fakeplugin
       
    19 
       
    20 CONFIG += plugin 
       
    21 
       
    22 CONFIG += mobility
       
    23 MOBILITY = serviceframework publishsubscribe
       
    24 
       
    25 INCLUDEPATH +=  inc \                
       
    26                 ../inc
       
    27 
       
    28 HEADERS +=  inc/tstestmodelplugin.h \
       
    29             inc/tstestmodel.h \
       
    30             
       
    31 SOURCES +=  src/tstestmodelplugin.cpp \
       
    32             src/tstestmodel.cpp \
       
    33 
       
    34 symbian {
       
    35     load(data_caging_paths)
       
    36     pluginDep.sources = fakeplugin.dll
       
    37     pluginDep.path = $$QT_PLUGINS_BASE_DIR    
       
    38     DEPLOYMENT += pluginDep
       
    39     
       
    40     TARGET.EPOCALLOWDLLDATA = 1
       
    41     TARGET.CAPABILITY = ALL -TCB
       
    42     
       
    43     LIBS += -lfbscli
       
    44 
       
    45     # service framework XML deployment/export
       
    46     xml.sources = ./data/tsfakelplugin.xml
       
    47     xml.path = $$RESOURCE_FILES_DIR/taskswitcher
       
    48     
       
    49     DEPLOYMENT += xml
       
    50 
       
    51     #temporary workaround
       
    52     BLD_INF_RULES.prj_exports += "data/tsfakelplugin.xml z:/resource/taskswitcher/tsfakelplugin.xml"
       
    53 }
       
    54 
       
    55 win32 {
       
    56     DESTDIR = ../app/debug
       
    57 }