example/DemoGUI/DemoGUI.pro
author cgandhi
Thu, 23 Sep 2010 17:43:31 +0530
changeset 25 a180113055cb
parent 16 b78fa4cdbf2b
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.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
16
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     1
# -------------------------------------------------
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     2
# Project created by QtCreator 2010-06-29T13:53:43
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     3
# -------------------------------------------------
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     4
TARGET = DemoGUI
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     5
TEMPLATE = app
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     6
QT += network
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     7
CONFIG += mobility
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     8
MOBILITY += contacts \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
     9
    location
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    10
SOURCES += ImageDownload.cpp \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    11
    main.cpp \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    12
    mainwindow.cpp \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    13
    CustomListWidget.cpp \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    14
    HomeView.cpp \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    15
    GridView.cpp \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    16
    ToolBar.cpp
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    17
HEADERS += ImageDownload.h \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    18
    mainwindow.h \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    19
    CustomListWidget.h \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    20
    HomeView.h \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    21
    ScreenSize.h \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    22
    GridView.h \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    23
    ToolBar.h \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    24
    WidgetConstants.h
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    25
FORMS += mainwindow.ui
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    26
symbian: { 
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    27
    TARGET.CAPABILITY = NetworkServices \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    28
        ReadUserData \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    29
        WriteUserData \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    30
        LocalServices \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    31
        UserEnvironment \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    32
        ReadDeviceData \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    33
        WriteDeviceData
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    34
    LIBS += -lsmfclient.dll \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    35
        -lcone \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    36
        -leikcore \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    37
        -lavkon \
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    38
	-lsmfcommon
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    39
    ICON = sasken_logo.svg
b78fa4cdbf2b pushing the demo application
cgandhi
parents:
diff changeset
    40
}