123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # -------------------------------------------------
- # Project created by QtCreator 2009-11-18T10:48:17
- # -------------------------------------------------
- QT += webkit
- TARGET = $$qtLibraryTarget(exampleapi)
- TEMPLATE = lib
- CONFIG += plugin \
- release \
- mobility
- VERSION = 1.0.0
- DEFINES += WRTAPI_LIBRARY
- SOURCES += exampleapi.cpp \
- example.cpp
- HEADERS += exampleapi.h \
- example.h
- INCLUDEPATH += ..\..\..\fw\
- 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
-
- TARGET.CAPABILITY = LocalServices \
- NetworkServices \
- ReadUserData \
- UserEnvironment \
- WriteUserData
- LIBS += -lavkon \
- -lcone \
- -leikcoctl \
- -lapgrfx \
- -lapparc
- }
- target.path += $$[QT_INSTALL_PLUGINS]/hybridplugins
- INSTALLS += target
|