qthighway/xqserviceipc/xqserviceipcserver/xqserviceipcserver.pro
branchRCL_3
changeset 10 cd2778e5acfe
parent 9 5d007b20cfd0
child 11 19a54be74e5e
equal deleted inserted replaced
9:5d007b20cfd0 10:cd2778e5acfe
     1 #
       
     2 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 # All rights reserved.
       
     4 #
       
     5 # This program is free software: you can redistribute it and/or modify
       
     6 # it under the terms of the GNU Lesser General Public License as published by
       
     7 # the Free Software Foundation, version 2.1 of the License.
       
     8 # 
       
     9 # This program is distributed in the hope that it will be useful,
       
    10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    12 # GNU Lesser General Public License for more details.
       
    13 #
       
    14 # You should have received a copy of the GNU Lesser General Public License
       
    15 # along with this program.  If not, 
       
    16 # see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/".
       
    17 #
       
    18 # Description:  Service Framework IPC
       
    19 #
       
    20 
       
    21 TEMPLATE = lib
       
    22 TARGET = xqserviceipcserver
       
    23 
       
    24 XQSERVICE_ROOT=../..
       
    25         
       
    26 include(api_headers.pri)
       
    27 include($$XQSERVICE_ROOT/xqservicebase.pri)
       
    28 
       
    29 QT -=gui
       
    30 QT +=network
       
    31 
       
    32 #Sources
       
    33 HEADERS += xqserviceipcserverfactory.h \
       
    34            xqserviceipcserver.h \
       
    35            xqserviceipcserver_p.h \ 
       
    36            xqserviceipcobserver.h \
       
    37            xqserviceipcserversession.h \
       
    38            xqserviceipcrequest.h
       
    39 
       
    40 SOURCES += xqserviceipcserverfactory.cpp \
       
    41            xqserviceipcserver.cpp \
       
    42            xqserviceipcserversession.cpp \
       
    43            xqserviceipcrequest.cpp
       
    44            
       
    45 DEFINES += QT_MAKE_IPC_SERVER_DLL
       
    46 
       
    47 # Symbian Specifics
       
    48 # Old UID3 102829E8
       
    49 symbian {
       
    50     TARGET.UID3 = 0x2002871B
       
    51     TARGET.VID = VID_DEFAULT
       
    52     TARGET.CAPABILITY = CAP_GENERAL_DLL
       
    53     TARGET.EPOCALLOWDLLDATA = 1
       
    54 
       
    55     HEADERS += xqserviceipcserver_symbianserver.h \
       
    56                xqserviceipcserver_symbiansession.h \
       
    57                xqserviceipcserver_apasymbianserver.h \
       
    58                xqserviceipcserver_apasymbiansession.h
       
    59     SOURCES += xqserviceipcserver_symbianserver.cpp \
       
    60                xqserviceipcserver_symbiansession.cpp \
       
    61                xqserviceipcserver_apasymbianserver.cpp \
       
    62                xqserviceipcserver_apasymbiansession.cpp
       
    63 
       
    64 #    BLD_INF_RULES.prj_exports += \
       
    65 #        "xqserviceipcserver.h         ..\..\inc\xqserviceipcserver.h" \
       
    66 #        "xqserviceipcobserver.h       ..\..\inc\xqserviceipcobserver.h" \
       
    67 #        "xqserviceipcserversession.h  ..\..\inc\xqserviceipcserversession.h" \
       
    68 #        "xqserviceipcrequest.h        ..\..\inc\xqserviceipcrequest.h" 
       
    69     
       
    70     LIBS += -lapgrfx -lws32 -lapparc -lxqserviceutil -lefsrv
       
    71 }