From 57f2fb07f0efc567e8703c27e067e22ac791992a Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 19 Aug 2018 14:33:37 -0700 Subject: [PATCH] Speed up build times by allow dependencies to be built in parallel --- moonlight-qt.pro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/moonlight-qt.pro b/moonlight-qt.pro index fc9bdaff..8b1fee8d 100644 --- a/moonlight-qt.pro +++ b/moonlight-qt.pro @@ -4,7 +4,8 @@ SUBDIRS = \ qmdnsengine \ app -CONFIG += ordered +# Build the dependencies in parallel before the final app +app.depends = qmdnsengine moonlight-common-c # Support debug and release builds from command line for CI CONFIG += debug_and_release