summaryrefslogtreecommitdiffstats
path: root/qdb.pro
diff options
context:
space:
mode:
authorKari Oikarinen <kari.oikarinen@qt.io>2016-06-22 13:18:04 +0300
committerKari Oikarinen <kari.oikarinen@qt.io>2016-07-14 11:57:38 +0000
commit3a6284c97ee1fb22f0bafe14f0f4d4ac2d8d2acf (patch)
tree259845e8b1c150fb5bb42e7dbcbe2d77a76d6650 /qdb.pro
parent174aad875aa79027dae885450ddd97d59cd27426 (diff)
Import QDB prototype
The prototype is capable of: - Running a process on the device - Pushing a file to the device - Pulling a file from the device The device is connected to through USB. There is not yet management of multiple connected devices. Change-Id: Icba20e1d68dafbab9d71f44b86c20efb1df45310 Reviewed-by: Rainer Keller <Rainer.Keller@qt.io>
Diffstat (limited to 'qdb.pro')
-rw-r--r--qdb.pro11
1 files changed, 11 insertions, 0 deletions
diff --git a/qdb.pro b/qdb.pro
new file mode 100644
index 0000000..9a07f50
--- /dev/null
+++ b/qdb.pro
@@ -0,0 +1,11 @@
+TEMPLATE = subdirs
+
+SUBDIRS += \
+ libqdb \
+ client \
+ qdbd \
+ test
+
+client.depends += libqdb
+qdbd.depends += libqdb
+test.depends += libqdb