example/lastfmmusiceventplugin/lastfmmusiceventplugin.pro
author cgandhi
Thu, 23 Sep 2010 17:43:31 +0530
changeset 25 a180113055cb
parent 23 574948b60dab
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 = lib
CONFIG += plugin \
    mobility
MOBILITY += location \
			contacts
QT += core \
    network
HEADERS = lastfmmusiceventplugin.h
SOURCES = lastfmmusiceventplugin.cpp
TARGET = $$qtLibraryTarget(lastfmmusiceventplugin)
symbian: { 
    # Load predefined include paths (e.g. QT_PLUGINS_BASE_DIR) to be used in the pro-files
    load(data_caging_paths)
    
    # EPOCALLOWDLLDATA have to set true because Qt macros has initialised global data
    TARGET.EPOCALLOWDLLDATA = 1
    
    # Defines plugin files into Symbian .pkg package
    pluginDep.sources = lastfmmusiceventplugin.dll
    pluginDep.path = $$QT_PLUGINS_BASE_DIR/smf/plugin/events.fetcher
    DEPLOYMENT += pluginDep
    TARGET.CAPABILITY = ReadUserData \
        WriteUserData \
        LocalServices \
        NetworkServices \
        UserEnvironment \
        ReadDeviceData \
        WriteDeviceData
    LIBS +=  -lsmfcommon.dll 
     LIBS +=  -lqjson.dll
    
}
target.path += $$[QT_INSTALL_PLUGINS]/smf/plugin/events.fetcher
INSTALLS += target