summaryrefslogtreecommitdiffstats
path: root/src/src.pro
diff options
context:
space:
mode:
Diffstat (limited to 'src/src.pro')
-rw-r--r--src/src.pro13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/src.pro b/src/src.pro
new file mode 100644
index 0000000..5a497e2
--- /dev/null
+++ b/src/src.pro
@@ -0,0 +1,13 @@
+TEMPLATE = subdirs
+CONFIG += ordered
+
+isEmpty(PARTS) {
+ SUBDIRS += protocol interpreter remote testapp objectBrowser
+} else {
+ # done this way since order matters
+ contains(PARTS, protocol):SUBDIRS += protocol
+ contains(PARTS, interpreter):SUBDIRS += interpreter
+ contains(PARTS, remote):SUBDIRS += remote
+ contains(PARTS, testapp):SUBDIRS += testapp
+ contains(PARTS, objectBrowser):SUBDIRS += objectBrowser
+}