From 7cbea60d9463791150b051b702f46915752c098b Mon Sep 17 00:00:00 2001 From: Dirk Farin Date: Tue, 10 Oct 2023 11:22:49 +0200 Subject: [PATCH] undo CMakeLists change that shouldn't have been committed to git --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6accbe49df..57913fcd95 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -72,7 +72,7 @@ endif() macro(plugin_option optionVariableName displayName defaultEnabled defaultPlugin) option(WITH_${optionVariableName} "Build ${displayName}" ${defaultEnabled}) - option(WITH_${optionVariableName}_PLUGIN "Build ${displayName} as a plugin" ${defaultPlugin} AND WITH_${optionVariableName}) + option(WITH_${optionVariableName}_PLUGIN "Build ${displayName} as a plugin" ${defaultPlugin}) endmacro() macro(plugin_compilation_info optionVariableName detectionVariable displayName)