example/lastfmmusicsearchplugin/lastfmmusicsearchplugin.pro
author cgandhi
Thu, 23 Sep 2010 17:15:03 +0530
changeset 23 574948b60dab
permissions -rw-r--r--
updating the lastfm music plugins and adding the smfhelp.chm

TEMPLATE = lib

CONFIG += plugin \
	mobility
	
MOBILITY += contacts \
	location 
    
QT += core \
	network
	
HEADERS = lastfmmusicsearchplugin.h

SOURCES = lastfmmusicsearchplugin.cpp

TARGET = $$qtLibraryTarget(lastfmmusicsearchplugin)

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 = lastfmmusicsearchplugin.dll
    pluginDep.path = $$QT_PLUGINS_BASE_DIR/smf/plugin/music.search
    DEPLOYMENT += pluginDep
    
    TARGET.CAPABILITY = NetworkServices \
    	ReadUserData \
    	WriteUserData \
    	LocalServices \
    	UserEnvironment \
    	ReadDeviceData \
    	WriteDeviceData
    
   LIBS += -lsmfcommon
}

target.path += $$[QT_INSTALL_PLUGINS]/smf/plugin/music.search

INSTALLS += target