aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/layouts/layouts.pro
diff options
context:
space:
mode:
authorJan Arve Saether <jan-arve.saether@theqtcompany.com>2016-02-18 13:28:59 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2016-02-26 13:18:27 +0000
commit974643829f677247a8b06aba563a28714b48f1a9 (patch)
tree2e040aacedff10bb0f579081bbae21693fea01be /src/imports/layouts/layouts.pro
parentfb2710a7f182ffb910f6b121e8bc125a4f61dcdf (diff)
Move QtQuick.Layouts to qtdeclarative from qtquickcontrols
This is in order for it to be available without having to install Qt Quick Controls Change-Id: I3f0d0dc108829947cd189b7861944e556e00cef3 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/layouts/layouts.pro')
-rw-r--r--src/imports/layouts/layouts.pro22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/imports/layouts/layouts.pro b/src/imports/layouts/layouts.pro
new file mode 100644
index 0000000000..26574150de
--- /dev/null
+++ b/src/imports/layouts/layouts.pro
@@ -0,0 +1,22 @@
+CXX_MODULE = qml
+TARGET = qquicklayoutsplugin
+TARGETPATH = QtQuick/Layouts
+IMPORT_VERSION = 1.2
+
+QT *= qml-private quick-private gui-private core-private
+
+SOURCES += plugin.cpp \
+ qquicklayout.cpp \
+ qquicklinearlayout.cpp \
+ qquickstacklayout.cpp \
+ qquickgridlayoutengine.cpp \
+ qquicklayoutstyleinfo.cpp
+
+HEADERS += \
+ qquicklayout_p.h \
+ qquicklinearlayout_p.h \
+ qquickstacklayout_p.h \
+ qquickgridlayoutengine_p.h \
+ qquicklayoutstyleinfo_p.h
+
+load(qml_plugin)