example/DemoGUI/DemoGUI.pro
author cgandhi
Mon, 11 Oct 2010 21:59:54 +0530
changeset 26 83d6a149c755
parent 16 b78fa4cdbf2b
permissions -rw-r--r--
Submitting following changes - AuthApps for Last.fm and Twitter added API for checking ServiceAuthorization added for SMFCredMgrClient API added for forcefully removing credential details from SMFCredMgr Extra argument checks in SMfClient APIs APIs for service login and logout from SMFClient Redundant members removed from SmfServerSymbian DSM bug fixes Test Apps included
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
}