smf/smfservermodule/smfserver/smfserver.pro
author cgandhi
Thu, 23 Sep 2010 17:43:31 +0530
changeset 25 a180113055cb
parent 18 013a02bf2bb0
permissions -rw-r--r--
Music Events are now normal Fetcher APIs added All APIs now return SmfError Canceling Request now supported Music Search now based on category Providerinfo added in DSM Added secondary ID, count, location to SMFAlbum Tags for Artist added Get tracks for album and artist added Added URL to subtitle DSM Bug fixes Detailed debugging logs filtered in server, pluginmgr, transportmgr playlistsOf() method changed in smfclient and plugin interfaces. RVCT B686 compilation issues resolved.

TEMPLATE = app
TARGET = smfserver 
QT += core \
    gui \
    network \
    sql
CONFIG += mobility
MOBILITY = contacts \
    location \
    bearer \
    systeminfo
include(datastoremgr/datastoremgr.pri)
include(pluginmgr/pluginmgr.pri)
include(server/server.pri)
include(smfplugins/smfplugins.pri)
include(transportmgr/transportmgr.pri)
!symbian {
    include(../../desktop.pri)
    include(../smfclient/common/common.pri)
    LIBS += -lqjson
}
PUBLIC_HEADERS += \
	smfserverglobal.h
HEADERS += \
    $$PUBLIC_HEADERS \
    $$PRIVATE_HEADERS
SOURCES += \
	main.cpp \
	smfserver_reg.rss
symbian: { 
    TARGET.UID3 = 0xE5027327
	TARGET.CAPABILITY = NetworkServices \
    	ReadUserData \
        WriteUserData \
        LocalServices \
        UserEnvironment \
    	ReadDeviceData \
    	WriteDeviceData
	LIBS += -lsmfclient \
	        -lsmfcredmgrclient \
	        -lcentralrepository \
	        -lsmfcommon 
}