summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qml.pri
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-08-10 05:37:19 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-08-10 08:01:37 (GMT)
commit8c3405bbf65826f0ab0be0bd090d723f8efaa3af (patch)
treef6886a2b8a86f567b98728bba9cdc3d1be780dcf /src/declarative/qml/qml.pri
parent12ffa33ddc725cd94662a383af6e1793049c807c (diff)
downloadQt-8c3405bbf65826f0ab0be0bd090d723f8efaa3af.zip
Qt-8c3405bbf65826f0ab0be0bd090d723f8efaa3af.tar.gz
Qt-8c3405bbf65826f0ab0be0bd090d723f8efaa3af.tar.bz2
Abstract expression and binding APIs
By splitting the interface through which the system interacts with bindings away from a specific implementation, we can introduce highly specialized implementations for specific optimizations. This commit also includes a sample optimization for object properties being assigned directly from a local id.
Diffstat (limited to 'src/declarative/qml/qml.pri')
-rw-r--r--src/declarative/qml/qml.pri6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/declarative/qml/qml.pri b/src/declarative/qml/qml.pri
index 75e5692..575876f 100644
--- a/src/declarative/qml/qml.pri
+++ b/src/declarative/qml/qml.pri
@@ -29,7 +29,8 @@ SOURCES += qml/qmlparser.cpp \
qml/qmlenginedebug.cpp \
qml/qmlrewrite.cpp \
qml/qmlbasicscript.cpp \
- qml/qmlvaluetype.cpp
+ qml/qmlvaluetype.cpp \
+ qml/qmlbindingoptimizations.cpp
HEADERS += qml/qmlparser_p.h \
qml/qmlinstruction_p.h \
@@ -75,7 +76,8 @@ HEADERS += qml/qmlparser_p.h \
qml/qmlenginedebug_p.h \
qml/qmlrewrite_p.h \
qml/qpodvector_p.h \
- qml/qmlvaluetype_p.h
+ qml/qmlvaluetype_p.h \
+ qml/qmlbindingoptimizations_p.h
# for qtscript debugger
contains(QT_CONFIG, scripttools):QT += scripttools