From d3d6b420ebebdf05b9377f825d9b69d8e2518508 Mon Sep 17 00:00:00 2001 From: Roland Winklmeier Date: Mon, 21 Apr 2014 15:07:08 +0200 Subject: [PATCH] Reorder projects to build plugins independent after all libraries. Caused build errors when BlackCore was not finished. --- client.pro | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/client.pro b/client.pro index e66688130..7cfe5c785 100644 --- a/client.pro +++ b/client.pro @@ -13,15 +13,6 @@ contains(BLACK_CONFIG, BlackSound) { contains(BLACK_CONFIG, BlackSim) { SUBDIRS += src/blacksim - - contains(BLACK_CONFIG, FSX) { - SUBDIRS += src/plugins/simulator/fsx/plugin_fsx.pro - } - - contains(BLACK_CONFIG, XPlane) { - SUBDIRS += src/xbus/xbus.pro - SUBDIRS += src/plugins/simulator/xplane/plugin_xplane.pro - } } contains(BLACK_CONFIG, BlackCore) { @@ -32,6 +23,15 @@ contains(BLACK_CONFIG, BlackGui) { SUBDIRS += src/blackgui } +contains(BLACK_CONFIG, FSX) { + SUBDIRS += src/plugins/simulator/fsx/plugin_fsx.pro +} + +contains(BLACK_CONFIG, XPlane) { + SUBDIRS += src/xbus/xbus.pro + SUBDIRS += src/plugins/simulator/xplane/plugin_xplane.pro +} + contains(BLACK_CONFIG, Samples) { SUBDIRS += samples/cli_client/sample_cli_client.pro SUBDIRS += samples/plugin/sample_plugin.pro