From eaf2dd5ef8fe6531ab349ff38d490e5e3788e067 Mon Sep 17 00:00:00 2001 From: reuk Date: Mon, 29 Jun 2020 10:27:38 +0100 Subject: [PATCH] CMake: Fix error when specifying multi-item VST3_CATEGORIES --- extras/Build/CMake/JUCEUtils.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Build/CMake/JUCEUtils.cmake b/extras/Build/CMake/JUCEUtils.cmake index fb20cddb1c..80cb05ad17 100644 --- a/extras/Build/CMake/JUCEUtils.cmake +++ b/extras/Build/CMake/JUCEUtils.cmake @@ -1595,7 +1595,7 @@ function(_juce_set_generic_property_if_not_set target property) set(existing_property) get_target_property(existing_property ${target} ${property}) - if(${existing_property} STREQUAL "existing_property-NOTFOUND") + if(existing_property STREQUAL "existing_property-NOTFOUND") set_target_properties(${target} PROPERTIES ${property} "${ARGN}") endif() endfunction()