From 1cecf429e75da50bfb40b2ffa599500f8fbdea73 Mon Sep 17 00:00:00 2001 From: Roland Winklmeier Date: Fri, 18 Apr 2014 14:08:39 +0200 Subject: [PATCH] Fix compilation error by build project reordering BlackSim is required by BlackCore, hence it must be listed before --- client.pro | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/client.pro b/client.pro index 006a47513..29de9857b 100644 --- a/client.pro +++ b/client.pro @@ -11,14 +11,6 @@ contains(BLACK_CONFIG, BlackSound) { SUBDIRS += src/blacksound } -contains(BLACK_CONFIG, BlackCore) { - SUBDIRS += src/blackcore -} - -contains(BLACK_CONFIG, BlackGui) { - SUBDIRS += src/blackgui -} - contains(BLACK_CONFIG, BlackSim) { SUBDIRS += src/blacksim @@ -32,6 +24,14 @@ contains(BLACK_CONFIG, BlackSim) { } } +contains(BLACK_CONFIG, BlackCore) { + SUBDIRS += src/blackcore +} + +contains(BLACK_CONFIG, BlackGui) { + SUBDIRS += src/blackgui +} + contains(BLACK_CONFIG, Samples) { SUBDIRS += samples/cli_client/sample_cli_client.pro SUBDIRS += samples/plugin/sample_plugin.pro