aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/shapes/shapes.pro
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2017-06-19 17:50:11 +0200
committerLaszlo Agocs <laszlo.agocs@qt.io>2017-06-19 17:50:36 +0200
commit8af287965907e785afefaa4dd010834a76f2d0f4 (patch)
tree100f98b1876d72821c6fd3b67631e97fd142aa50 /src/imports/shapes/shapes.pro
parent6f2bdb816dc816461cf3888eb732f71904b6a7ab (diff)
parentee076afedccbe1d37306a7972051f84eb036d655 (diff)
Merge branch 'wip/scenegraphng' into dev
Say hello to Shape. Change-Id: I1093feee4acc375e62bae1d351db0a7969a536d0
Diffstat (limited to 'src/imports/shapes/shapes.pro')
-rw-r--r--src/imports/shapes/shapes.pro31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/imports/shapes/shapes.pro b/src/imports/shapes/shapes.pro
new file mode 100644
index 0000000000..80e6a22142
--- /dev/null
+++ b/src/imports/shapes/shapes.pro
@@ -0,0 +1,31 @@
+CXX_MODULE = qml
+TARGET = qmlshapesplugin
+TARGETPATH = QtQuick/Shapes
+IMPORT_VERSION = 1.0
+
+QT = core gui qml quick quick-private
+
+HEADERS += \
+ qquickshape_p.h \
+ qquickshape_p_p.h \
+ qquickshapegenericrenderer_p.h \
+ qquickshapesoftwarerenderer_p.h
+
+SOURCES += \
+ plugin.cpp \
+ qquickshape.cpp \
+ qquickshapegenericrenderer.cpp \
+ qquickshapesoftwarerenderer.cpp
+
+qtConfig(opengl) {
+ HEADERS += \
+ qquicknvprfunctions_p.h \
+ qquicknvprfunctions_p_p.h \
+ qquickshapenvprrenderer_p.h
+
+ SOURCES += \
+ qquicknvprfunctions.cpp \
+ qquickshapenvprrenderer.cpp
+}
+
+load(qml_plugin)