summaryrefslogtreecommitdiffstats
path: root/examples/charts/scatterchart
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@theqtcompany.com>2016-05-11 19:11:32 +0200
committerMiikka Heikkinen <miikka.heikkinen@qt.io>2016-08-01 12:13:39 +0000
commita0e9e3bcf9d33372728a06292cc9f138a9662572 (patch)
tree2d336f41efe1e4d9e144e8a8df27d00f70f4dd39 /examples/charts/scatterchart
parentd137ae33ccf01882f80770919b1daa199dec7019 (diff)
Cleanup examples build system
Make the examples self-contained and follow the way examples are compiled in other modules, so they can be easly opened by qtc. Change-Id: I664ba3dc21630ced5b1d14ad878a70eac0763c84 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
Diffstat (limited to 'examples/charts/scatterchart')
-rw-r--r--examples/charts/scatterchart/scatterchart.pro14
1 files changed, 8 insertions, 6 deletions
diff --git a/examples/charts/scatterchart/scatterchart.pro b/examples/charts/scatterchart/scatterchart.pro
index 8170d6f4..fdb468d6 100644
--- a/examples/charts/scatterchart/scatterchart.pro
+++ b/examples/charts/scatterchart/scatterchart.pro
@@ -1,9 +1,11 @@
-!include( ../examples.pri ) {
- error( "Couldn't find the examples.pri file!" )
-}
-TARGET = scatterchart
-SOURCES += main.cpp \
- chartview.cpp
+QT += charts
HEADERS += \
chartview.h
+
+SOURCES += \
+ chartview.cpp \
+ main.cpp
+
+target.path = $$[QT_INSTALL_EXAMPLES]/charts/scatterchart
+INSTALLS += target