mmsharing/livecommsui/livecommsui.pro
branchRCL_3
changeset 33 bc78a40cd63c
parent 32 73a1feb507fb
child 35 6c57ef9392d2
equal deleted inserted replaced
32:73a1feb507fb 33:bc78a40cd63c
     1 # Copyright (c) 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 "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 # Initial Contributors:
       
     8 # Nokia Corporation - initial contribution.
       
     9 # Contributors:
       
    10 # Description:
       
    11 
       
    12 TEMPLATE = lib
       
    13 TARGET = livecommsui
       
    14 CONFIG += hb \
       
    15     dll \
       
    16     svg
       
    17     
       
    18 QT += xml
       
    19 
       
    20 DEFINES += LIVECOMMSUI_LIB
       
    21 TRANSLATIONS = dialer.ts
       
    22 
       
    23 LCUI_DIR = lcui
       
    24 LCUIENGINE_DIR = lcuiengine
       
    25 DOCML_DIR = lcui/resources/lcviews
       
    26 
       
    27 DOCML += $$DOCML_DIR/lcidleview.docml
       
    28 DOCML += $$DOCML_DIR/lcreceiveview.docml
       
    29 DOCML += $$DOCML_DIR/lcreceiveonlyview.docml
       
    30 DOCML += $$DOCML_DIR/lcsendview.docml
       
    31 DOCML += $$DOCML_DIR/lctwowayview.docml
       
    32 DOCML += $$DOCML_DIR/lcvtview.docml
       
    33 
       
    34 RESOURCES += $$LCUI_DIR/livecommsui.qrc
       
    35 
       
    36 INCLUDEPATH += $$LCUI_DIR/inc
       
    37 INCLUDEPATH += $$LCUIENGINE_DIR/inc
       
    38 INCLUDEPATH += ../inc
       
    39 
       
    40 # Input
       
    41 HEADERS += $$LCUI_DIR/inc/lcviewmanager.h     
       
    42 HEADERS += $$LCUI_DIR/inc/lcviewmanager_p.h
       
    43 HEADERS += $$LCUI_DIR/inc/lcview.h
       
    44 HEADERS += $$LCUI_DIR/inc/lcuicomponentrepository.h
       
    45 HEADERS += $$LCUI_DIR/inc/lceffecthandler.h
       
    46 HEADERS += $$LCUI_DIR/inc/lcvideowidget.h
       
    47 HEADERS += $$LCUIENGINE_DIR/inc/lcuiengine.h
       
    48 
       
    49 SOURCES += $$LCUI_DIR/src/lcviewmanager.cpp    
       
    50 SOURCES += $$LCUI_DIR/src/lcviewmanager_p.cpp
       
    51 SOURCES += $$LCUI_DIR/src/lcview.cpp
       
    52 SOURCES += $$LCUI_DIR/src/lcuicomponentrepository.cpp
       
    53 SOURCES += $$LCUI_DIR/src/lceffecthandler.cpp
       
    54 SOURCES += $$LCUIENGINE_DIR/src/lcuiengine.cpp
       
    55 
       
    56 libFiles.sources = livecommsui.dll
       
    57 DEPLOYMENT += libFiles
       
    58 
       
    59 symbian: {
       
    60 
       
    61     INCLUDEPATH += /epoc32/include/ecom
       
    62     INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    63     
       
    64     HEADERS += $$LCUIENGINE_DIR/inc/lcuiengine_p.h
       
    65     HEADERS += $$LCUIENGINE_DIR/inc/lcactivitymanager.h
       
    66     
       
    67     SOURCES += $$LCUIENGINE_DIR/src/lcuiengine_p.cpp
       
    68     SOURCES += $$LCUIENGINE_DIR/src/lcactivitymanager.cpp
       
    69     SOURCES += $$LCUI_DIR/src/lcvideowidget.cpp
       
    70         
       
    71     TARGET.UID2 = 0x1000008d
       
    72     TARGET.UID3 = 0x2002434D
       
    73     TARGET.CAPABILITY = CAP_GENERAL_DLL
       
    74     TARGET.EPOCALLOWDLLDATA = 1
       
    75     
       
    76     libFiles.path = "!:/sys/bin"
       
    77     LIBS += -lecom \
       
    78         -lflogger \
       
    79         -lws32 \
       
    80         -lbafl \
       
    81         -lcone \
       
    82         -lcentralrepository \
       
    83         -lxqserviceutil \
       
    84         -ldialpad \
       
    85         -lxqsettingsmanager
       
    86     
       
    87     defFiles = "$${LITERAL_HASH}ifdef WINS" \
       
    88         "DEFFILE bwins/livecommsui.def" \
       
    89         "$${LITERAL_HASH}else" \
       
    90         "DEFFILE eabi/livecommsui.def" \
       
    91         "$${LITERAL_HASH}endif"
       
    92     MMP_RULES += defFiles
       
    93             
       
    94     :BLD_INF_RULES.prj_exports += "$$LCUI_DIR/inc/lcviewmanager.h /epoc32/include/lcviewmanager.h"
       
    95     :BLD_INF_RULES.prj_exports += "$$LCUI_DIR/inc/lcexport.h /epoc32/include/lcexport.h"    
       
    96 }
       
    97