summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2019-01-23 13:53:38 +0100
committerTim Jenssen <tim.jenssen@qt.io>2019-01-28 11:58:37 +0000
commitae3ff4848bb68b4c234e5e4f0a801abd4394e4eb (patch)
tree535fbccd4ce167641168d6fab3f6ae21979044f1 /src
parent6db7f4bd7b223e16960f1f2032032ecbcfef1c67 (diff)
Add rough build system layout
Added sharedcomponents.pro will build example app and QML plugins. The pri file sharedcomponents.pri can be included to add components like e.g. the curve editor. Change-Id: Iaf194a8a66cb08df6528e5eaae04a9b86db1272a Reviewed-by: Knud Dollereder <knud.dollereder@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/curveeditor/curveeditor.pri3
-rw-r--r--src/imports/imports.pro5
-rw-r--r--src/src.pro3
3 files changed, 11 insertions, 0 deletions
diff --git a/src/curveeditor/curveeditor.pri b/src/curveeditor/curveeditor.pri
new file mode 100644
index 0000000..19cd8df
--- /dev/null
+++ b/src/curveeditor/curveeditor.pri
@@ -0,0 +1,3 @@
+INCLUDEPATH += $$PWD
+
+### include required files
diff --git a/src/imports/imports.pro b/src/imports/imports.pro
new file mode 100644
index 0000000..7557e2e
--- /dev/null
+++ b/src/imports/imports.pro
@@ -0,0 +1,5 @@
+TEMPLATE = subdirs
+
+## This will build required QML plugins
+
+SUBDIRS =
diff --git a/src/src.pro b/src/src.pro
new file mode 100644
index 0000000..04fc5a9
--- /dev/null
+++ b/src/src.pro
@@ -0,0 +1,3 @@
+TEMPLATE = subdirs
+
+SUBDIRS = examples