From 598e24c7cd1271db6ed492b01c1db57984da8a85 Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Tue, 16 May 2023 15:58:59 +0200 Subject: [PATCH] Change ordered config to depends This should improve compile times on multi-core CPUs since tests and core can compile at the same time. --- akashi.pro | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/akashi.pro b/akashi.pro index 119f6c0..49f5a02 100644 --- a/akashi.pro +++ b/akashi.pro @@ -5,9 +5,9 @@ SUBDIRS += \ akashi \ tests -# Just like how "CONFIG += ordered" is considered harmful a practice for handling -# internal dependecies, so is qmake considered harmful a tool for handling projects -# as Qt expects you to handle them. -# -# Too bad. -CONFIG += ordered +akashi.subdirs = akashi +core.subdirs = core +core.tests = tests + +# How to make subdirs not suck. Simple, use depends. +akashi.depends = core