diff options
author | Tapani Mikola <tapani.mikola@nokia.com> | 2009-08-10 19:24:30 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-08-13 05:22:38 (GMT) |
commit | 19c25e46e47cc181fb8a633471a528d78e7d85a6 (patch) | |
tree | 5a9e4f3421e5bb0a12c6263f8f51e6c1a888b6a6 /tools/qmlviewer/qmlviewer.pro | |
parent | 6bb860bc0ef7a6457382110a92b8eb4745eeb968 (diff) | |
download | Qt-19c25e46e47cc181fb8a633471a528d78e7d85a6.zip Qt-19c25e46e47cc181fb8a633471a528d78e7d85a6.tar.gz Qt-19c25e46e47cc181fb8a633471a528d78e7d85a6.tar.bz2 |
Adding the possibility to set the http proxy manually.
Diffstat (limited to 'tools/qmlviewer/qmlviewer.pro')
-rw-r--r-- | tools/qmlviewer/qmlviewer.pro | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/tools/qmlviewer/qmlviewer.pro b/tools/qmlviewer/qmlviewer.pro index a8ccd91..8b9a768 100644 --- a/tools/qmlviewer/qmlviewer.pro +++ b/tools/qmlviewer/qmlviewer.pro @@ -1,15 +1,20 @@ -TEMPLATE = app -CONFIG += qt uic +TEMPLATE = app +CONFIG += qt \ + uic DESTDIR = ../../bin -QT += declarative script network sql -# Input -HEADERS += qmlviewer.h -SOURCES += main.cpp qmlviewer.cpp - -FORMS = recopts.ui +QT += declarative \ + script \ + network \ + sql +# Input +HEADERS += qmlviewer.h \ + proxysettings.h +SOURCES += main.cpp \ + qmlviewer.cpp \ + proxysettings.cpp +FORMS = recopts.ui \ + proxysettings.ui include($$QT_SOURCE_TREE/tools/shared/deviceskin/deviceskin.pri) - -target.path=$$[QT_INSTALL_BINS] +target.path = $$[QT_INSTALL_BINS] INSTALLS += target - |