Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.79 KB | None | 0 0
  1. diff --git a/tools/qml/qml.pri b/tools/qml/qml.pri
  2. index 08cd506..1bdbeb7 100644
  3. --- a/tools/qml/qml.pri
  4. +++ b/tools/qml/qml.pri
  5. @@ -19,18 +19,10 @@ SOURCES += $$PWD/qmlruntime.cpp \
  6.  RESOURCES = $$PWD/browser/browser.qrc \
  7.              $$PWD/startup/startup.qrc
  8.  
  9. -symbian: {
  10. -    contains(QT_CONFIG, s60): {
  11. -        LIBS += -lavkon -lcone
  12. -    }
  13. -    !contains(S60_VERSION, 3.1):!contains(S60_VERSION, 3.2) {
  14. -        LIBS += -lsensrvclient -lsensrvutil
  15. -    }
  16. -    !contains(S60_VERSION, 3.1):!contains(S60_VERSION, 3.2): {
  17. -        SOURCES += $$PWD/deviceorientation_symbian.cpp
  18. -        FORMS = $$PWD/recopts.ui \
  19. -                     $$PWD/proxysettings.ui
  20. -    }
  21. +symbian:!contains(S60_VERSION, 3.1):!contains(S60_VERSION, 3.2) {
  22. +   SOURCES += $$PWD/deviceorientation_symbian.cpp
  23. +   FORMS = $$PWD/recopts.ui \
  24. +           $$PWD/proxysettings.ui
  25.  } else:maemo5 {
  26.      QT += dbus
  27.      HEADERS += $$PWD/texteditautoresizer_maemo5.h
  28. diff --git a/tools/qml/qml.pro b/tools/qml/qml.pro
  29. index b1d56ea..6f46dcf 100644
  30. --- a/tools/qml/qml.pro
  31. +++ b/tools/qml/qml.pro
  32. @@ -37,10 +37,13 @@ symbian {
  33.      include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
  34.      TARGET.EPOCHEAPSIZE = 0x20000 0x4000000
  35.      TARGET.CAPABILITY = NetworkServices ReadUserData
  36. +    !contains(S60_VERSION, 3.1):!contains(S60_VERSION, 3.2) {
  37. +        LIBS += -lsensrvclient -lsensrvutil
  38. +    }
  39.  
  40.      # Deploy plugin for remote debugging
  41. -    qmldebuggingplugin.sources = $$QT_BUILD_TREE/plugins/qmltooling/tcpserver$${QT_LIBINFIX}.dll
  42. -    qmldebuggingplugin.path = c:$$QT_PLUGINS_BASE_DIR/qmltooling
  43. +    qmldebuggingplugin.sources = $$QT_BUILD_TREE/plugins/qmldebugging/tcpserver$${QT_LIBINFIX}.dll
  44. +    qmldebuggingplugin.path = c:$$QT_PLUGINS_BASE_DIR/qmldebugging
  45.      DEPLOYMENT +=  qmldebuggingplugin
  46.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement