aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/scenegraph/softwarecontext/softwarecontext.pro
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/scenegraph/softwarecontext/softwarecontext.pro')
-rw-r--r--src/plugins/scenegraph/softwarecontext/softwarecontext.pro43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/plugins/scenegraph/softwarecontext/softwarecontext.pro b/src/plugins/scenegraph/softwarecontext/softwarecontext.pro
new file mode 100644
index 0000000000..d60260c1eb
--- /dev/null
+++ b/src/plugins/scenegraph/softwarecontext/softwarecontext.pro
@@ -0,0 +1,43 @@
+TEMPLATE=lib
+TARGET=softwarecontext
+
+CONFIG += plugin
+
+QT += gui-private core-private quick-private qml-private
+
+SOURCES += \
+ context.cpp \
+ pluginmain.cpp \
+ renderloop.cpp \
+ rectanglenode.cpp \
+ imagenode.cpp \
+ pixmaptexture.cpp \
+ glyphnode.cpp \
+ renderingvisitor.cpp \
+ ninepatchnode.cpp \
+ softwarelayer.cpp \
+ threadedrenderloop.cpp \
+ painternode.cpp
+
+HEADERS += \
+ context.h \
+ pluginmain.h \
+ renderloop.h \
+ rectanglenode.h \
+ imagenode.h \
+ pixmaptexture.h \
+ glyphnode.h \
+ renderingvisitor.h \
+ ninepatchnode.h \
+ softwarelayer.h \
+ threadedrenderloop.h \
+ painternode.h
+
+OTHER_FILES += softwarecontext.json
+
+target.path += $$[QT_INSTALL_PLUGINS]/scenegraph
+
+files.path += $$[QT_INSTALL_PLUGINS]/scenegraph
+
+INSTALLS += target files
+