diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-08-27 23:53:20 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-08-27 23:53:20 (GMT) |
commit | 70e650500e6e13be336857dac17a110097da70ef (patch) | |
tree | fb132a0be6632ded120aaa2e0c8f2f764f0b89cc /src/declarative/qml/qml.pri | |
parent | 648fa4818d875ec76c304b79e474a406d265bd0f (diff) | |
download | Qt-70e650500e6e13be336857dac17a110097da70ef.zip Qt-70e650500e6e13be336857dac17a110097da70ef.tar.gz Qt-70e650500e6e13be336857dac17a110097da70ef.tar.bz2 |
Implement (parts of) XMLHttpRequest
This is the first step to allowing QML to interact with REST style
APIs in the same way as a webbrowser can.
Diffstat (limited to 'src/declarative/qml/qml.pri')
-rw-r--r-- | src/declarative/qml/qml.pri | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/declarative/qml/qml.pri b/src/declarative/qml/qml.pri index 05bdade..9a8d3f2 100644 --- a/src/declarative/qml/qml.pri +++ b/src/declarative/qml/qml.pri @@ -30,7 +30,8 @@ SOURCES += qml/qmlparser.cpp \ qml/qmlrewrite.cpp \ qml/qmlbasicscript.cpp \ qml/qmlvaluetype.cpp \ - qml/qmlbindingoptimizations.cpp + qml/qmlbindingoptimizations.cpp \ + qml/qmlxmlhttprequest.cpp HEADERS += qml/qmlparser_p.h \ qml/qmlinstruction_p.h \ @@ -77,7 +78,8 @@ HEADERS += qml/qmlparser_p.h \ qml/qmlrewrite_p.h \ qml/qpodvector_p.h \ qml/qmlvaluetype_p.h \ - qml/qmlbindingoptimizations_p.h + qml/qmlbindingoptimizations_p.h \ + qml/qmlxmlhttprequest_p.h # for qtscript debugger contains(QT_CONFIG, scripttools):QT += scripttools |