example.pro 987 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # -------------------------------------------------
  2. # Project created by QtCreator 2009-11-18T10:48:17
  3. # -------------------------------------------------
  4. QT += webkit
  5. TARGET = $$qtLibraryTarget(exampleapi)
  6. TEMPLATE = lib
  7. CONFIG += plugin \
  8. release \
  9. mobility
  10. VERSION = 1.0.0
  11. DEFINES += WRTAPI_LIBRARY
  12. SOURCES += exampleapi.cpp \
  13. example.cpp
  14. HEADERS += exampleapi.h \
  15. example.h
  16. INCLUDEPATH += ..\..\..\fw\
  17. symbian: {
  18. # Load predefined include paths (e.g. QT_PLUGINS_BASE_DIR) to be used in the pro-files
  19. load(data_caging_paths)
  20. # EPOCALLOWDLLDATA have to set true because Qt macros has initialised global data
  21. TARGET.EPOCALLOWDLLDATA = 1
  22. TARGET.CAPABILITY = LocalServices \
  23. NetworkServices \
  24. ReadUserData \
  25. UserEnvironment \
  26. WriteUserData
  27. LIBS += -lavkon \
  28. -lcone \
  29. -leikcoctl \
  30. -lapgrfx \
  31. -lapparc
  32. }
  33. target.path += $$[QT_INSTALL_PLUGINS]/hybridplugins
  34. INSTALLS += target