| 1 |
# ------------------------------------------------- |
| 2 |
# Project created by QtCreator 2009-11-10T18:31:00 |
| 3 |
# ------------------------------------------------- |
| 4 |
QT += network \ |
| 5 |
webkit \ |
| 6 |
xml |
| 7 |
TARGET = qfacebookconnect |
| 8 |
|
| 9 |
TEMPLATE = lib |
| 10 |
DESTDIR = ./debug |
| 11 |
DEFINES += QFACEBOOKCONNECT_LIBRARY |
| 12 |
INCLUDEPATH = inc/ |
| 13 |
SOURCES += src/fbsession.cpp |
| 14 |
SOURCES += src/fbrequest.cpp |
| 15 |
SOURCES += src/fbxmlhandler.cpp |
| 16 |
SOURCES += src/fbdialog.cpp |
| 17 |
SOURCES += src/fblogindialog.cpp |
| 18 |
SOURCES += src/fbpermissiondialog.cpp |
| 19 |
SOURCES += src/fbstreamdialog.cpp |
| 20 |
SOURCES += src/fbfeeddialog.cpp |
| 21 |
HEADERS += inc/fbconnectglobal.h |
| 22 |
HEADERS += inc/fbsession.h |
| 23 |
HEADERS += inc/fbrequest.h |
| 24 |
HEADERS += inc/fbxmlhandler.h |
| 25 |
HEADERS += inc/fberror.h |
| 26 |
HEADERS += inc/fbdialog.h |
| 27 |
HEADERS += inc/fblogindialog.h |
| 28 |
HEADERS += inc/fbpermissiondialog.h |
| 29 |
HEADERS += inc/fbstreamdialog.h |
| 30 |
HEADERS += inc/fbfeeddialog.h |
| 31 |
RESOURCES += resource/qfbconnectimages.qrc |
| 32 |
|
| 33 |
symbian: { |
| 34 |
INCLUDEPATH += /epoc32/include/stdapis |
| 35 |
TARGET.EPOCALLOWDLLDATA = 1 # Symbian specific |
| 36 |
TARGET.UID3 = 0xA89FA521 # Symbian specific, unprotected uid3 from symbiansigned.com |
| 37 |
TARGET.CAPABILITY = NetworkServices # Symbian specific, we just need network access |
| 38 |
} |