aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/compiler.pri
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2016-06-15 16:56:56 +0200
committerSimon Hausmann <simon.hausmann@qt.io>2016-06-17 05:30:55 +0000
commit6b60de934bef14b17c05e726cea05b0bef8b8004 (patch)
tree16e622c597ea54ab06bf5a60df4a09f9d8eef408 /src/qml/compiler/compiler.pri
parent8c10d12be1a219a6bd5bd54499b281551c79c823 (diff)
Separate QQmlPropertyValidator into a standalone file
The type compiler file is getting crowded and this class is destined to be used outside of the scope of the type compiler. Change-Id: I21aff8ee64dbfeb039523518e912ef206637fb41 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/qml/compiler/compiler.pri')
-rw-r--r--src/qml/compiler/compiler.pri6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/qml/compiler/compiler.pri b/src/qml/compiler/compiler.pri
index 3bcac65f81..ad73c26b15 100644
--- a/src/qml/compiler/compiler.pri
+++ b/src/qml/compiler/compiler.pri
@@ -27,13 +27,15 @@ HEADERS += \
$$PWD/qqmltypecompiler_p.h \
$$PWD/qv4isel_moth_p.h \
$$PWD/qv4instr_moth_p.h \
- $$PWD/qqmlpropertycachecreator_p.h
+ $$PWD/qqmlpropertycachecreator_p.h \
+ $$PWD/qqmlpropertyvalidator_p.h
SOURCES += \
$$PWD/qqmltypecompiler.cpp \
$$PWD/qv4instr_moth.cpp \
$$PWD/qv4isel_moth.cpp \
- $$PWD/qqmlpropertycachecreator.cpp
+ $$PWD/qqmlpropertycachecreator.cpp \
+ $$PWD/qqmlpropertyvalidator.cpp
}