From 74ccb046222dcc2a346e44250c6a07d51a79343e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=BCrz?= Date: Wed, 26 Jul 2017 11:55:08 +0200 Subject: [PATCH] Update plugin subdir variable --- guh-plugins.pro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guh-plugins.pro b/guh-plugins.pro index 4640da46..1a52c95d 100644 --- a/guh-plugins.pro +++ b/guh-plugins.pro @@ -1,6 +1,6 @@ TEMPLATE = subdirs -PLUGINS_DIRS = \ +PLUGIN_DIRS = \ elro \ intertechno \ networkdetector \ @@ -45,7 +45,7 @@ contains(CONFIG, selection) { # Check each plugin if the subdir exists for(plugin, PLUGINS) { - contains(PLUGINS_DIRS, $${plugin}) { + contains(PLUGIN_DIRS, $${plugin}) { SUBDIRS*= $${plugin} } else { error("Invalid plugin passed. There is no subdirectory with the name $${plugin}.") @@ -55,7 +55,7 @@ contains(CONFIG, selection) { } all { - SUBDIRS *= $${PLUGINS_DIRS} + SUBDIRS *= $${PLUGIN_DIRS} message("Building all plugins") }