From ae3ff4848bb68b4c234e5e4f0a801abd4394e4eb Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Wed, 23 Jan 2019 13:53:38 +0100 Subject: 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 Reviewed-by: Tim Jenssen --- src/curveeditor/curveeditor.pri | 3 +++ src/imports/imports.pro | 5 +++++ src/src.pro | 3 +++ 3 files changed, 11 insertions(+) create mode 100644 src/curveeditor/curveeditor.pri create mode 100644 src/imports/imports.pro create mode 100644 src/src.pro (limited to 'src') 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 -- cgit v1.2.3