aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/scenegraph/graph/graph.pro
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar.sletta@digia.com>2013-06-11 20:47:54 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-06-14 10:27:34 +0200
commit76d8f8a5d3a6229c49b072c5872cd99649210107 (patch)
tree808dcf25be3d7e9cd5a855a613ac3c4138cefae4 /examples/quick/scenegraph/graph/graph.pro
parent6586505e6bf157089137f3bbf5f31cb70cfaa614 (diff)
Graph example
Change-Id: I4a7b52f6e14182aed31354dc3860ef187e1899a4 Reviewed-by: Alan Alpert <aalpert@blackberry.com>
Diffstat (limited to 'examples/quick/scenegraph/graph/graph.pro')
-rw-r--r--examples/quick/scenegraph/graph/graph.pro34
1 files changed, 34 insertions, 0 deletions
diff --git a/examples/quick/scenegraph/graph/graph.pro b/examples/quick/scenegraph/graph/graph.pro
new file mode 100644
index 0000000000..5991f799dc
--- /dev/null
+++ b/examples/quick/scenegraph/graph/graph.pro
@@ -0,0 +1,34 @@
+#-------------------------------------------------
+#
+# Project created by QtCreator 2013-06-11T13:13:18
+#
+#-------------------------------------------------
+
+QT += core gui quick
+
+TARGET = graph
+
+TEMPLATE = app
+
+SOURCES += main.cpp \
+ graph.cpp \
+ noisynode.cpp \
+ gridnode.cpp \
+ linenode.cpp
+
+HEADERS += \
+ graph.h \
+ noisynode.h \
+ gridnode.h \
+ linenode.h
+
+RESOURCES += \
+ graph.qrc
+
+OTHER_FILES += \
+ main.qml \
+ shaders/noisy.vsh \
+ shaders/noisy.fsh \
+ shaders/line.fsh \
+ shaders/line.vsh
+